-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (67 loc) · 1.25 KB
/
styles.css
File metadata and controls
71 lines (67 loc) · 1.25 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
* {
--primary: #f2b13b;
--secondary: #31c3be;
--text: #e2eef5;
margin: 0;
padding: 0;
}
body {
background-color: #192a32;
}
#heading {
transition: color 1s ease-in-out;
font-weight: 900;
font-family: monospace;
color: var(--text);
text-align: center;
font-size: 50px;
margin-top: 20px;
margin-bottom: 20px;
}
p {
padding: 10px;
font-weight: 900;
color: var(--primary);
font-size: 3em;
font-family: monospace;
}
#test {
border-radius: 50px;
position: absolute;
background-color: var(--secondary);
height: 25px;
width: 25px;
}
.super-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#platform {
transition: box-shadow 0.5s ease-in-out;
position: absolute;
border-radius: 10px;
width: 100px;
background-color: var(--primary);
height: 20px;
}
#top-container {
display: flex;
justify-content: space-between;
}
#bottom-container {
margin-bottom: 30px;
}
#container {
transition: box-shadow 0.5s ease-in, box-shadow 1.5s ease-out;
box-shadow: 30px 30px 10px #102129;
display: flex;
flex-direction: column;
box-sizing: border-box;
justify-content: space-between;
background-color: #1f3540;
border-radius: 20px;
width: 50%;
height: 80vh;
}