This repository was archived by the owner on Jan 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (101 loc) · 2.34 KB
/
Copy pathstyle.css
File metadata and controls
117 lines (101 loc) · 2.34 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
116
117
body {
background: hsl(188, 39%, 88%);
color: hsl(227, 28%, 10%);
font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif;
font-size: 14px;
}
* {
box-sizing: border-box;
}
a:link, a:visited {
color: hsl(195, 100%, 27%);
text-decoration: none;
}
a:hover, a:focus {
text-decoration: none;
background: hsla(195, 100%, 27%, 0.1);
border-top: 1px solid hsla(195, 100%, 27%, 0.3);
border-bottom: 1px solid hsla(195, 100%, 27%, 0.3);
}
h1 {
font-weight: bold;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
font-size: 6em;
text-shadow: 0px 0px 3px hsla(227, 28%, 10%, 0.7);
color: hsl(188, 39%, 97%);
}
h2 {
font-weight: bold;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
text-shadow: 0px 1px 0px hsl(0, 0%, 100%);
font-size: 2em;
}
h3 {
font-weight: bold;
font-size: 1.3em;
}
h4 {
text-decoration: none;
font-size: 1em;
font-weight: normal;
line-height: 2em;
background: hsla(195, 100%, 27%, 0.1);
border: 1px solid hsla(195, 100%, 27%, 0.3);
border-left: none;
border-right: none;
padding: 0em 0.5em;
}
h5 {
font-weight: normal;
font-style: italic;
font-size: 1em;
}
hr {
height: 2px;
border: none;
border-top: 1px solid hsla(0, 0%, 0%, 0.1);
border-bottom: 1px solid hsla(0, 100%, 100%, 0.3);
margin: 40px 0px;
}
code {
font-family: "Monaco", "Inconsolata", "Menlo", monospace;
font-size: 0.9em;
color: hsl(195, 100%, 27%);
}
#fork-me {
position: absolute;
top: 0px;
right: 0px;
width: 140px;
height: 140px;
text-indent: -9999px;
background-image: url("fork-me.png");
border: none;
text-decoration: none;
background-color: transparent;
}
@media (-webkit-min-device-pixel-ratio: 2) {
#fork-me {
background-image: url("fork-me@2x.png") !important;
-webkit-background-size: 140px 140px;
}
}
.content {
max-width: 760px;
margin: 0px auto;
padding: 20px;
}
.content h1:first-of-type {
text-align: center;
margin-top: 0.25em;
margin-bottom: 0.25em;
}
.content p:first-of-type {
text-align: center;
text-shadow: 0px 1px 0px hsl(0, 0%, 100%);
color: hsl(188, 39%, 38%);
font-size: 1.3em;
}
.content p:first-of-type em {
font-style: normal;
}