forked from jeeeyul/jeeeyul.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (53 loc) · 764 Bytes
/
styles.css
File metadata and controls
64 lines (53 loc) · 764 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
55
56
57
58
59
60
61
62
63
64
* {
font-family: sans-serif;
}
h2, h3 {
border-bottom: dashed 1px #ccc;
}
h1 {
background-color: #444;
color: white;
padding: 10px;
margin: 0px;
border-radius: 5px;
}
.container {
padding: 10px 20px;
width: 1024px;
margin: 0px auto;
}
a, a:visited, a:active, a:hover {
color: cornflowerblue
}
code {
padding: 5px;
background-color: #eee;
border-radius: 5px;
border: solid 1px #ccc;
font-family: monospace;
}
pre {
padding: 5px;
background-color: #eee;
border-radius: 5px;
border: solid 1px #ccc;
font-family: monospace;
}
pre > code {
display: block;
padding: 0px;
border : none;
}
table{
border-spacing: 2px;
border-collapse: true;
}
th, td{
padding: 10px 20px;
}
th{
background-color: #ccc;
}
td{
background-color: #eee;
}