-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
41 lines (35 loc) · 711 Bytes
/
main.css
File metadata and controls
41 lines (35 loc) · 711 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
body{
margin: 0;
}
.wrapper{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 300px;
width: 500px;
box-shadow: 4px 4px 10px rgba(0, 0, 0, .15);
}
/* ========================================================================= */
/* Nav */
/* ========================================================================= */
.nav{
margin-top: 30px;
margin-left: 50px;
}
.nav ul{
list-style-type: none;
padding: 0;
margin: 0;
}
.nav a{
font-family: helvetica;
font-weight: 800;
font-size: 100px;
line-height: 40/30;
color: black;
text-decoration: none;
}
.nav a:hover{
text-decoration: underline;
}