-
Notifications
You must be signed in to change notification settings - Fork 0
/
coming-soon.css
120 lines (106 loc) · 1.9 KB
/
coming-soon.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
109
110
111
112
113
114
115
116
117
118
119
120
*,
::before,
::after {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
height: 100vh;
width: 100vw;
background-color: black;
}
.cover {
background-image: url("comin-soon.jpeg");
height: 100%;
width: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-attachment: fixed;
z-index: 10;
background-color: black;
opacity: 0;
}
a {
all: unset;
text-decoration: none;
cursor: pointer;
color: inherit;
}
.logo-text {
font-size: 2rem;
font-family: Poppins;
color: white;
}
nav {
display: flex;
padding: 1.7rem 5.5rem;
justify-content: space-between;
align-items: center;
opacity: 0;
}
ul {
display: flex;
}
li {
color: white;
list-style: none;
font-family: Poppins;
margin: 0.5rem;
font-size: 1.1rem;
}
.content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
h1 {
color: white;
font-family: Poppins;
text-align: center;
font-size: 3.5rem;
margin: 0.4rem;
opacity: 0;
transform: translateY(30%);
}
h2 {
color: #66ff00;
font-family: Raleway;
text-align: center;
font-size: 3rem;
margin: 0.4rem;
opacity: 0;
transform: translateY(30%);
}
@media screen and (max-width: 800px) {
body {
background-image: url("comin-soon-man.jfif");
height: 100vh;
width: 100vw;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
background-attachment: fixed;
}
nav {
padding: 0.8rem 2.4rem;
justify-content: center;
height: 20%;
}
.logo-text {
font-size: 300%;
background-color: #00000050;
padding: 1rem;
}
ul {
display: none;
}
.content {
background-color: #00000050;
padding: 1rem;
}
}