-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (95 loc) · 1.73 KB
/
style.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
box-sizing: border-box;
color: #fff;
}
.container{
width: 100vw;
height: 100vh;
background: url("images/background.webp");
background-size: cover;
padding: 0 8%;
position: relative;
}
.content p strong{
font-size: 30px;
}
.logo{
width: 120px;
padding: 20px 0;
cursor: pointer;
}
.zoom {
transition: transform 0.3s;
}
.zoom:hover {
transform: scale(1.5);
}
.content{
top: 50%;
position: absolute;
transform: translateY(-50%);
color: #FFF;
}
.content h1{
font-size: 64px;
font-weight: 500;
color: #ff3753;
}
.container .content{
line-height: 1.6;
}
.content h1 span{color: white;}
.content button{
background: transparent;
border: 2px solid #ff3753;
outline: none;
padding: 12px 25px;
color: #FFF;
display: flex;
align-items: center;
margin-top: 30px;
cursor: pointer;
}
.content button img{
width: 15px;
margin-left: 10px;
}
.launch-time{
display: flex;
}
.launch-time div{
flex-basis: 100px;
}
.launch-time div p{
font-size: 60px;
margin-bottom: -14px;
}
.launch-time div span{
color: #ff3753;
font-weight: bold;
}
.rocket{
width: 250px;
position: absolute;
right: 10%;
bottom: 0;
color: sandybrown;
animation: rocket 4s linear infinite;
}
@keyframes rocket{
0%{
bottom: 0;
opacity: 0;
}
100%{
bottom: 105%;
opacity: 1;
}
}
#days{
margin-right: 20px;
}