-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
74 lines (58 loc) · 954 Bytes
/
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
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Optima, "Hiragino Sans GB W3";
line-height: 40px;
font-size: 18px;
background: hsl(0, 7%, 92%);
}
a {
text-decoration: none;
}
p {
margin: 0;
}
tt {
font-family: Monaco;
}
#main {
width: 900px;
margin: 0 auto;
padding: 0px 40px;
background: white;
box-shadow: 2px 0px 14px hsla(0, 0%, 27%, 0.38);
}
#banner {
vertical-align: middle;
}
#banner a {
}
#banner img {
margin: auto;
display: block;
}
#banner .title {
font-size: 50px;
color: hsl(240, 100%, 88%);
font-family: "Gill Sans";
line-height: 100px;
}
#banner .repo {
}
.project {
margin: 40px auto;
background-color: white;
padding: 20px 40px 20px 80px;
}
.project .title {
margin-left: -40px;
line-height: 80px;
font-size: 30px;
}
.project .repo {}
.project .site {}
.project .about {
color: hsl(0, 0%, 61%);
}