-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (62 loc) · 1.15 KB
/
style.css
File metadata and controls
73 lines (62 loc) · 1.15 KB
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
body{
margin:1;
font-family:'Lato', sans-serif;
}
#hamburger{
float: right;
padding: 20px;
}
h2 {
float: left;
padding: 20px;
}
.overlay{
height: 0%;
width: 100%;
position: fixed;
z-index: 1;
top:0;
left:0;
background-color: rgb(0,0,0);
background-color: rgb(0,0,0,0.9);
overflow-y: hidden;
transition: 0.5s;
}
.overlay-content{
position: relative;
top:25%;
width:100%;
text-align: center;
margin-top: 30px;
}
.overlay a{
padding: 8px;
text-decoration: none;
font-size: 36px;
color: #818181;
display: block;
transition: 0.3s;
}
.overlay a:hover, .overlay a:focus{
color: #f1f1f1;
}
.overlay .closebtn{
position: absolute;
top: 20px;
right:45px;
font-size:60px;
}
@media screen and (max-heignt: 450px){
.overlay {overflow-y: auto;}
.overlay a {font-size: 20px}
.overlay .closebtn {
font-size: 40px;
top: 15px;
right: 35px;
}
}
.body-content{
text-align: center;
padding-top: 100px;
padding-bottom: 25px;
}