-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (88 loc) · 1.39 KB
/
Copy pathstyle.css
File metadata and controls
101 lines (88 loc) · 1.39 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
* {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.container {
height: 100vh;
width: 100%;
background-image: url(media/image.png);
background-size: cover;
background-position: center;
position: relative;
}
.floating {
display: block;
margin-left: auto;
margin-right: auto;
top: 10px;
position: relative;
animation-name: floating;
animation-duration: 4s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
}
@keyframes floating {
0% {
transform: translate(0, 0px);
}
50% {
transform: translate(0, 50px);
}
100% {
transform: translate(0, -0px);
}
}
.navbar {
width: 88%;
margin: auto;
padding: 15px 0;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
width: 140px;
cursor: pointer;
}
.navbar ul li {
list-style: none;
display: inline-block;
margin: 0 15px;
}
.navbar ul li a {
text-decoration: none;
color: #4c454c;
font-size: 15px;
}
.content {
width: 100%;
position: absolute;
top: 30%;
}
.left-col {
margin-left: 6%;
}
.left-col h1 {
font-size: 90px;
color: #fff;
line-height: 110px;
float: left;
}
.right-col {
float: right;
margin-right: 6%;
margin-top: 120px;
display: flex;
align-items: center;
}
.right-col p {
font-size: 18px;
color: #4c454c;
font-weight: 400;
margin-right: 15px;
}
#icon {
width: 80px;
cursor: pointer;
}