-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
115 lines (115 loc) · 1.81 KB
/
style.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
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
html {
min-height: 100%;
box-shadow: inset 0 0 100px #000;
margin: 0;
padding: 0;
}
body {
background-color: #0C1C0E;
color: #55A559;
font-family: monospace;
line-height: 130%;
}
h1, h2, h3, body, p, img {
box-sizing: border-box;
animation-name: flick;
animation-duration: 1337s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
h1, h2 {
margin-bottom: 10px;
color: #6bca48;
text-shadow: 2px 2px 2px #428838;
line-height: 100%;
}
h2::after {
content: "_";
}
a, a:link, a:visited {
color: #49902f;
}
a:hover {
background-color: #18402d;
color: #49902f;
cursor: pointer;
text-decoration: none;
}
abbr {
border-bottom: 1px dashed #00FF5F;
cursor: help;
}
ul {
list-style-type: square;
}
img {
max-width: 100%;
max-height: 250px;
}
hr {
background-color: #333;
border: none;
height: 2px;
margin: 5px 2px;
}
.comics img {
max-height: 100%;
}
table {
font-size: 90%;
border-collapse: collapse;
}
td {
vertical-align: top;
border: 1px solid #333;
padding: 3px;
}
iframe {
width: 100%;
box-shadow: 5px 5px 0px #333;
}
.center {
text-align: center;
margin: 10px auto;
}
.container img {
max-width: 32%;
}
#main {
max-width: 640px;
margin: 0px auto;
padding: 10px;
}
#tweets {
font-size: 90%;
}
.column {
column-count: 2;
}
.title li {
font-size: 90%;
}
pre, code {
line-height: 120%;
white-space: pre-wrap;
font-size: 95%;
}
.download {
display: block;
text-align: center;
padding: 10px 20px;
margin: 5px;
background-color: #18402d;
}
@media (max-width: 800px) {
.column {
column-count: 1;
}
}
@keyframes flick {
0% {}
50% {
filter: hue-rotate(45deg);
}
100% {}
}