forked from remy/mit-license
-
Notifications
You must be signed in to change notification settings - Fork 0
/
8bits-monochrome-blue-white.css
118 lines (97 loc) · 1.64 KB
/
8bits-monochrome-blue-white.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
116
117
118
/* 8bits theme v1.1.0 by Jorge Matricali, https://github.com/matricali/mit-license-8bits-theme */
/* MIT License https://jorge-matricali.mit-license.org/ */
@import url('https://fonts.googleapis.com/css?family=PT+Mono|VT323');
body {
font-family: 'PT Mono', monospace;
padding: .4em;
font-size: 1.1em;
background: #00f;
color: #fff;
}
a:link,
a:visited {
text-decoration: none;
color: #fff;
}
article {
display: block;
margin: 1em;
position: relative;
max-width: 800px;
margin: 10px auto 0;
}
article h1 {
color: #fff;
width: 100%;
margin: 0 auto;
padding-top: 1.5em;
font-size: 3em;
}
article h1,
article h1+p {
font-family: 'VT323', monospace;
padding-left: 6%;
}
article h1+p {
margin-top: 0;
margin-bottom: 3em;
}
article h1+p a:link,
article h1+p a:visited {
color: #fff;
}
article p {
padding: 0 2em;
text-align: justify;
}
article p:last-child {
padding-bottom: 1.8em;
font-size: 0.9em;
}
footer {
margin: 0 auto;
font-size: .8em;
text-align: center;
}
#gravatar {
display: block;
float: right;
}
@media (min-width: 750px) {
#gravatar {
position: absolute;
top: 4em;
right: 3em;
}
#gravatar+h1+p+p {
padding-top: 2em;
}
h1+p {
padding-right: 6em;
}
h1+p+p {
padding-top: 0.8em;
}
}
@media (max-width: 750px) {
body {
font-size: 14px;
}
#gravatar {
position: relative;
top: 4em;
right: 2em;
}
article h1+p {
padding-bottom: 1em;
}
article h1+p+p {
padding-top: 0.8em;
}
footer {
padding-bottom: 4em;
}
}
img {
filter: contrast(700%) invert(100%) brightness(80%) sepia(100%) saturate(5) invert(100%);
}