forked from nbswords/web-design-final-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.css
52 lines (43 loc) · 789 Bytes
/
env.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
/* table */
section.env-table h1 {
color: var(--ccns-hl-color);
}
section.env-table table.env-table {
color: white;
border: 1px solid;
width: 100%;
margin-top: 20px;
font-size: 1.2rem;
text-align: center;
}
section.env-table table.env-table tr.row-desc {
padding: 20px 0;
}
section.env-table table.env-table tr.row-desc th.col-desc {
padding: 5px 0;
}
/* img */
section.env-img h1 {
margin-top: 40px;
}
section.env-img img {
margin-top: 20px;
width: 100%;
height: auto;
}
section.env-img table {
color: white;
}
section.env-img table tr td div {
margin-top: 30px;
}
@media only screen and (max-width: 768px) {
/* table */
section.env-table table.env-table {
font-size: 1rem;
}
/* img */
section.env-img h1 {
margin: 30px 0 0;
}
}