-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
152 lines (147 loc) · 2.26 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
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
html {
background-color: #222;
}
body {
font-family: 'Roboto', sans-serif;
color:#ddd;
font-size:16px;
margin:1.5em auto;
max-width:800px;
padding:1em;
line-height:1.7;
}
a {
text-decoration: underline;
color: #6a98af;
}
a:hover {
color:#6FC1C7;
}
a:visited {
color: #6A75BD;
}
ul,ol {
list-style: none;
padding:0;
margin:.5em 0;
}
li{
margin: .25em 0;
}
ol.dotted, ul.dotted {
list-style: disc;
margin-left: .25em;
}
ol.numbered {
list-style: decimal;
margin-left: .25em;
}
ol.inline li, ul.inline li {
display:inline;
margin:0 1em 0 0;
}
li:last-of-type {
margin:0;
}
section, article {
margin:2em 0;
}
footer {
margin:1em 0;
}
h1,h2,h3,h4,h5,p {
margin: .2em 0;
}
h1 {
font-size:1.75em; /* 28px based on 16px default font-size */
}
h2 {
font-size:1.5em; /* 24px based on 16px default font-size */
}
h3 {
font-size:1.25em; /* 20px based on 16px default font-size */
}
h4 {
font-size:1em;
}
h5 {
font-size:.75em;
}
p {
font-size:1em;
}
@media all and (min-width:640px){
.navbar .title {
float:left;
}
.navbar nav {
float:right;
}
}
.navbar{
margin: 0 0 1.5em 0;
}
.navbar .title, .navbar nav {
margin:0;
}
.navbar .title {
line-height:32px;
}
.navbar nav {
line-height:32px;
}
.navbar:after {
content: "";
display: table;
clear: both;
}
.navbar ul {
margin:0;
}
.navbar a {
color: #6a98af;
vertical-align: text-top;
text-decoration:none;
}
.footer{
margin: 4em 0;
}
.footer .copyright{
font-size:.75em;
}
.project_list li a{
min-width: 170px;
display: inline-block;
}
.project_list li span {
font-size:.75em;
margin:0 0 0 .25em;
}
.project-page .project_list li a{
min-width: 0px;
}
@media all and (min-width:640px){
.project_list{
display:table;
}
.project_list li{
display:table-row;
}
.project_list li a{
display:table-cell;
}
.project-page .project_list li a{
min-width: 0px;
padding-right:1em;
}
}
.project_images .project_icon img {
max-width:100%;
}
.project_images .project_icon {
margin-bottom: 1em;
}
.project_images .project_icon .icon_title {
color: #aaa;
font-style: italic;
}