-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (59 loc) · 1.04 KB
/
styles.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
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #0d1117;
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.container {
width: 100%;
max-width: 900px;
text-align: center;
padding: 20px;
}
header h1 {
font-size: 2.5em;
color: #00a4ff;
margin-bottom: 20px;
}
main {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.login-box, .launch-box {
background: #161b22;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
width: 300px;
}
.login-box h2, .launch-box h2 {
font-size: 1.5em;
margin-bottom: 15px;
}
button {
padding: 15px 20px;
font-size: 1.1em;
color: #ffffff;
background-color: #00a4ff;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
transition: all 0.3s ease;
}
button:hover {
background-color: #008ace;
}
footer {
margin-top: 20px;
font-size: 0.9em;
opacity: 0.8;
}