-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
161 lines (143 loc) · 2.77 KB
/
style.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #adadad;
border-radius: 20px;
border: 1px solid #9d9d9d;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.loader {
border: 5px solid transparent;
border-radius: 50%;
border-top: 5px solid #765a9f;
width: 30px;
height: 30px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.hoverNav{
font-weight: 600;
margin: 5px;
border-left: 2px solid grey;
transition: all 0.01s ease-in-out;
cursor: pointer;
}
.hoverNav:hover{
color: #2bb1da;
}
.f:hover{
color: #d6d6d6;
}
.Search-btn{
position:relative;
right: 0;
width: 60px;
height: 35px;
font-size: 16px;
background: #4781b5;
transition: all 0.25s ease-in-out;
}
.Search-btn:hover{
background-color: #4b75b9;
}
.Search-btn:active{
background-color: #29569f;
}
.okactive{
border-left: 2px solid #2bb1da;
color: #2bb1da;
}
.hidden{
display: none;
}
.detail-con{
border-radius: 5px;
}
.detail-con:hover{
background-color: rgb(222, 240, 255);
box-shadow: 0 2px 3px #29569f;
}
.flag{
text-align: center;
width: 40px;
height: 40px;
margin: 0 10px 0 0;
border-radius: 10px;
font-size: 30px;
border: 1px solid grey;
display: flex;
justify-content: center;
}
.counName{
font-size: 20px;
color: #29569f;
}
.counDetails{
font-size: 16px;
margin-top: 5px;
color: #163464;
}
.special{
color: red;
}
.btn-custom{
width: 100px;
margin: 5px 0 0 10px;
border-radius: 5px;
font-size: 14px;
background-color: #163464;
border: 1px solid #163464;
color: aliceblue;
cursor: pointer;
}
@media screen and (max-width: 750px) {
.flag{
text-align: center;
width: 30px;
height: 30px;
margin: 0 8px 0 0;
border-radius: 8px;
font-size: 20px;
border: 1px solid grey;
display: flex;
justify-content: center;
}
.counName{
font-size: 17px;
color: #29569f;
}
.counDetails{
font-size: 13px;
color: #163464;
}
.table-style{
font-size: 12px;
}
.Search-btn{
display: none;
}
}
@media screen and (max-width: 1000px) {
.table-style{
font-size: 14px;
}
}
@media screen and (max-width: 500px) {
.table-style{
font-size: 10px;
}
}