forked from bugaevc/asmwall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (44 loc) · 708 Bytes
/
styles.css
File metadata and controls
53 lines (44 loc) · 708 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
body {
padding: 0 10%;
}
header {
border-bottom: 1px solid #EEE;
}
header h1 {
text-align: center;
font-family: sans-serif;
}
#content {
font-size: 150%;
}
code {
line-height: 1.5em;
}
table {
font-size: inherit;
border-collapse: collapse;
}
th, td {
padding: 5px 15px;
border: 1px solid #EEE;
}
.instructions ul {
padding: 0;
}
.instructions li {
display: block;
cursor: pointer;
padding: 10px;
list-style-type: none;
font-family: monospace;
transition: background 0.3s;
}
.instructions li:hover,
.instructions li:active {
background: #EEE;
}
.block-link {
display: block;
color: initial;
text-decoration: none;
}