-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
100 lines (88 loc) · 1.35 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
.MultiCarousel {
float: left;
overflow: hidden;
padding: 15px;
width: auto;
position: relative;
}
.MultiCarousel .MultiCarousel-inner {
transition: 1s ease all;
float: left;
}
.MultiCarousel .MultiCarousel-inner .item {
float: left;
}
.MultiCarousel .MultiCarousel-inner .item>div {
text-align: center;
}
.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
position: absolute;
border-radius: 50%;
top: calc(50% - 20px);
}
.MultiCarousel .leftLst {
left: 0;
}
.MultiCarousel .rightLst {
right: 0;
}
@media(max-width: 750px){
.leftLst{
opacity: 0.6;
}
.rightLst{
opacity: 0.6;
}
}
.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
pointer-events: none;
background: #ccc;
}
/* registration table style */
.demo {
border:1px solid #C0C0C0;
border-collapse:collapse;
padding:5px;
}
.demo th {
border:1px solid #C0C0C0;
padding:5px;
/* background:#F0F0F0; */
}
.demo td {
border:1px solid #C0C0C0;
padding:5px;
}
tr{
padding:30px;
}
tr:nth-child(even){background-color: #f2f2f2;}
tr:hover {background-color: #ddd;}
th {
background-color: #00ADEF;
color: white;
padding:28px;
}
td{
padding: 20px
}
@media(min-width: 1150px){
body{
overflow-x: hidden;
}
}
@media(max-width: 992px){
body{
overflow-x: hidden;
}
}
.blinking {
animation: blinker 1.4s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}