-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabs.module.css
More file actions
43 lines (42 loc) · 846 Bytes
/
tabs.module.css
File metadata and controls
43 lines (42 loc) · 846 Bytes
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
.alliesHeader h2 {
cursor: pointer;
text-align: center;
margin-bottom: 30px;
letter-spacing: 0.03em;
font-weight: bold;
font-family: "Poppins", sans-serif;
font-weight: 600;
font-size: 30px;
line-height: 40px;
color: #FFFFFF;
}
.line {
margin-bottom: 100px;
height: 4px;
background: rgba(204, 210, 227, 0.31);
}
.lineActive {
background: ‘var(—div-background-color),';
}
h2.inactive {
color: rgba(196, 196, 196, 0.26) ;
}
@media (max-width: 992px){
.alliesHeader h2{
font-size: 25px;
}
}
@media only screen and (max-width: 768px) {
.alliesHeader h2{
font-size: 16px;
}
.line{
margin-bottom: 40px;
}
}
@media only screen and (max-width: 438px) {
.alliesHeader h2{
font-size: 14px;
letter-spacing: normal;
}
}