-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomming.css
More file actions
61 lines (54 loc) · 1.17 KB
/
comming.css
File metadata and controls
61 lines (54 loc) · 1.17 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
/* General styles */
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #121212;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column; /* Center content vertically */
width: 100%;
height: 100%;
}
.coming-soon-content {
text-align: center;
max-width: 80%; /* Limit content width */
}
.coming-soon-image-placeholder {
width: 100%;
max-width: 400px;
height: 225px; /* 16:9 aspect ratio */
background-color: #2f2f2f;
margin-bottom: 20px;
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
}
.coming-soon-image-placeholder img {
max-width: 100%;
max-height: 100%;
border-radius: 10px;
}
.coming-soon-content h1 {
margin-bottom: 20px;
}
.coming-soon-content button {
padding: 10px 20px;
background-color: #3b82f6;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
font-size: 16px;
}
.coming-soon-content button:hover {
background-color: #2563eb;
}