-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.css
47 lines (42 loc) · 881 Bytes
/
base.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
/* apply a natural box layout model to all elements */
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
height: 100%;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
body {
background-color: #fafafa;
padding: 20px 20px 50px 140px;
}
nav {
position: fixed;
top: 20px;
left: 20px;
}
nav > a {
height: 100px;
width: 100px;
border-radius: 5px;
display: block;
margin-bottom: 20px;
display: flex;
text-align: center;
align-items: center;
justify-content: center;
color: white;
font-weight: 500;
font-size: 16pt;
text-decoration: none;
background-size: cover;
}
/*css for individual sections*/
#home .img {
height: 400px;
width: 600px;
background-size: cover;
border-radius: 5px;
}