-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathstyles.module.css
48 lines (41 loc) · 1000 Bytes
/
styles.module.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
@media only screen and (max-width: 996px) {
/*Mobile*/
.link_to {
background-color: var(--ifm-color-primary-p1);
color: var(--ifm-text-color-on-primary-p1);
width: 358px;
font-weight: 700;
}
.link_to_services {
background-color: var(--ifm-color-primary-p1);
color: var(--ifm-text-color-on-primary-p1);
width: 358px;
font-weight: 700;
}
.link_to_about_us {
background-color: var(--ifm-color-primary-p1);
color: var(--ifm-text-color-on-primary-p1);
width: 358px;
font-weight: 700;
}
}
@media only screen and (min-width: 996px) {
.link_to {
background-color: var(--ifm-color-secondary-s2);
color: white;
width: 358px;
font-weight: 700;
}
.link_to_services {
background-color: var(--ifm-color-blue-jupyter);
color: white;
width: 358px;
font-weight: 700;
}
.link_to_about_us {
background-color: var(--ifm-color-secondary-s2);
color: white;
width: 358px;
font-weight: 700;
}
}