-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (44 loc) · 752 Bytes
/
style.css
File metadata and controls
54 lines (44 loc) · 752 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
44
45
46
47
48
49
50
51
52
53
54
html {
font-size: 12px;
}
#main_header {
text-align: center;
}
ul.clickable {
display: flex;
flex-wrap : wrap;
margin: 30px;
}
ul.clickable li {
margin: 10px;
cursor: pointer;
}
li.active {
color : red;
font-weight: bold;
}
/* table css */
table.html_tag{
margin: 40px auto;
width: calc(100% - 80px);
border: 1px solid #000;
border-collapse: collapse;
}
table.html_tag td,
table.html_tag th {
border: 1px solid #000;
padding: 4px;
width: 33.3333%
}
@media (max-width: 820px) {
tr td:nth-child(2),
tr th:nth-child(2) {
display : none;
}
table.html_tag td:first-child{
width: 30%;
}
table.html_tag td:last-child{
width: 70%;
}
}