This repository was archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
179 lines (148 loc) · 2.89 KB
/
Copy pathbase.css
File metadata and controls
179 lines (148 loc) · 2.89 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
body {
font-family: 'Marcellus', serif;
color: #333;
padding: 0px;
margin: 0px;
}
#wrapper {
padding: 1em;
margin: 0 auto;
}
#wrapper svg {
max-width: 100%;
}
header {
position: relative;
border-bottom: 1px dotted #333;
}
header img {
height: 50px;
}
header input {
display: none;
}
header ul {
list-style-type: none;
margin-bottom: 5px;
}
header ul li {
padding-right: 1em;
font-weight: bold;
}
header ul li a,
header ul li a:active,
header ul li a:visited,
header ul li a:hover {
color: #565;
text-decoration: none;
}
footer {
font-size: small;
text-align: right;
border-top: 1px dotted #333;
padding: 0.5em 0.5em 1em 0px;
margin: 0px;
}
.post-list-item {
margin-bottom: 1em;
}
.post-list-item h3,
.post-view .post-header {
border-bottom: 1px dotted #666;
}
.post-list-item h3 small {
font-size: small;
color: #666;
}
.post-list-item .post-excerpt {
margin: 0 1em;
}
.post-view pre {
white-space: pre-wrap;
border-top: 1px dotted #666;
border-bottom: 1px dotted #666;
padding: 0.5em;
}
.project-list {
list-style-type: none;
}
a {
color: #696;
}
a:visited,
a:active,
a:hover {
color: #669;
}
dd ul {
margin: 0 auto;
}
.clearfix:after,
.clearfix.before:before {
content: " ";
visibility: hidden;
display: block;
height: 0;
clear: both;
}
@media (min-width: 500px) {
header ul li {
display: inline-block;
}
}
@media (min-width: 992px) {
#wrapper {
width: 960px;
}
header img {
height: 24px;
}
header ul li {
font-size: 14pt;
}
.project-list li {
display: inline-block;
width: 45%;
height: 10em;
overflow: scroll;
padding: 0.5em;
margin: 0.5em;
-webkit-box-shadow: -2px 2px 2px 1px rgba(238,238,238,1);
-moz-box-shadow: -2px 2px 2px 1px rgba(238,238,238,1);
box-shadow: -2px 2px 2px 1px rgba(238,238,238,1);
}
.project-details {
padding-left: 1em;
margin: 0 0 0.5em 0.5em;
width: 35%;
float: right;
-webkit-box-shadow: -2px 2px 2px 0px rgba(238,238,238,1);
-moz-box-shadow: -2px 2px 2px 0px rgba(238,238,238,1);
box-shadow: -2px 2px 2px 0px rgba(238,238,238,1);
}
.project-details h2 {
margin-top: 0;
}
.post-list {
width: 80%;
margin: 0 auto;
}
.post-list-item .post-excerpt {
margin: 0 1em;
}
.post-view {
width: 80%;
margin: 0 auto;
}
.post-view .post-header h2 {
margin-bottom: 0px;
}
.post-view pre {
-webkit-box-shadow: -2px 0 2px 1px rgba(238,238,238,1);
-moz-box-shadow: -2px 0 2px 1px rgba(238,238,238,1);
box-shadow: -2px 0 2px 1px rgba(238,238,238,1);
margin: 0.5em;
white-space: pre;
border: none;
}
}