-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (55 loc) · 792 Bytes
/
styles.css
File metadata and controls
65 lines (55 loc) · 792 Bytes
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
* {
margin:0;
padding:0;
-moz-box-sizing:border-box;
box-sizing:border-box;
}
html, body {
height:100%;
}
body {
background:#7dddf2;
color:#062f38;
font-family:"Helvetica Neue", sans-serif;
font-size:20px;
line-height:1.5;
}
.wrapper {
min-height:100%;
width:100%;
max-width:640px;
padding:0 10px;
margin:0 auto;
}
h1 {
text-transform:uppercase;
font-size:57px;
margin:8px 0;
}
p, ul {
margin:16px 0;
}
ul {
list-style:none;
}
a {
color:#00819e;
background:#beeef9;
text-decoration:none;
padding:2px 3px;
border-radius:3px;
}
a:hover, a:focus {
color:#de7df2;
background:#fff;
}
.project-list li {
float:left;
width:50%;
padding:0 10px 0 0;
}
.project-list a {
display:block;
text-align:center;
line-height:140px;
}