-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
84 lines (82 loc) · 1.33 KB
/
stylesheet.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
75
76
77
78
79
80
81
82
83
84
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap');
body{
font-family: 'Inter', sans-serif;
color: #777;
background-color: #FFF;
}
#header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 120px;
margin: 0;
border-bottom-style: solid;
border-bottom-color: #999;
box-shadow: 5px 10px 5px #CCC;
background-color: #FFF;
}
#header a{
float: left;
width: 15%;
height: 120px;
background-color: #777;
transition: background-color 400ms;
color: #FFF;
text-decoration: none;
font-size: 200%;
text-align: center;
}
#header a p{
vertical-align: middle;
}
#header a:hover{
background-color: #999;
color: #FFF;
}
#header a:link{
color: #FFF;
}
#header a:visited{
color: #FFF;
}
#header a:active{
color: #FFF;
}
#header img{
float: right;
height: 120px
}
#content{
position: absolute;
top: 150px;
width: 40%;
}
#plane{
position: fixed;
top: 0px;
left: 500px;
z-index: -2;
}
#back-clouds{
position: fixed;
top: 0px;
left: 0px;
z-index: -3;
width: 3000px;
filter: blur(8px);
-webkit-filter: blur(8px);
}
#front-clouds{
position: fixed;
bottom: 0px;
right: 0px;
z-index: -1;
width: 1000px;
filter: blur(4px);
-webkit-filter: blur(4px);
}
.parallax-images{
display: none;
transition: display 100ms;
}