-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
115 lines (98 loc) · 1.45 KB
/
style.scss
File metadata and controls
115 lines (98 loc) · 1.45 KB
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
@import 'https://fonts.googleapis.com/css?family=Roboto+Condensed';
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
font-size: 16px;
line-height: 1.5em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Roboto Condensed';
margin: 0 0 0.6em 0;
}
h1 {
font-size: 2em;
margin-bottom: 1em;
}
h2 {
font-size: 1.5em;
margin-top: 1.5em;
border-bottom: 1px solid #ffcc00;
}
h3 {
font-size: 1.4em;
}
h4 {
font-size: 1.3em;
}
h5 {
font-size: 1.2em;
}
h6 {
font-size: 1.1em;
margin-bottom: 0.3em;
}
dt {
font-weight: bold;
}
dl,
dd {
margin-bottom: 1em;
}
p {
margin: 0 0 1.2em 0;
}
table {
border-collapse: collapse;
width: 100%;
margin-bottom: 2em;
td,
th {
border: 1px solid #707070;
}
td {
vertical-align: top;
padding: 1em 1em;
&:nth-child(1) {
width: 20%;
}
&:nth-child(2) {
width: 30%;
}
&:nth-child(3) {
width: 50%;
}
}
th {
background-color: #ffcc00;
&[scope='row'] {
background-color: #ffe375;
}
}
}
th {
padding: 1em;
vertical-align: top;
text-align: left;
}
#header {
height: 35px;
padding: 10px;
background-color: #000;
img {
width: 130px;
}
}
#main {
padding: 1em;
}
.next-page {
text-align: center;
font-size: 1.5em;
font-weight: bold;
}