-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
172 lines (149 loc) · 2.57 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
width: 100%;
}
#main {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
#playground {
height: 80%;
width: 80%;
background-color: transparent;
border: 3px solid #000000;
border-radius: 10px;
overflow: hidden;
}
#playgroundTop {
height: 80px;
width: 100%;
background-color: rgb(83, 92, 83);
display: flex;
justify-content: space-around;
align-items: center;
}
#playgroundTop .parts {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
}
#playgroundTop .parts .num {
background-color: #fff;
border-radius: 5px;
padding: 8px 10px;
font-weight: 800;
}
.bubble {
height: 40px;
width: 40px;
border-radius: 50%;
margin: 10px;
display: flex;
justify-content: center;
align-items: center;
font-weight: 900;
border: 1px solid #7e9eb3;
}
.bubble:hover {
cursor: pointer;
background-color: cornsilk;
scale: 1.1;
}
#playgroundBtm {
width: 100%;
height: calc(100% - 80px);
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
#center {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: #fff;
}
#start {
width: 100%;
height: 100vh;
position: absolute;
z-index: 5;
display: flex;
justify-content: center;
align-items: center;
background-color: #222;
}
#btns {
display: flex;
align-items: center;
flex-direction: column;
row-gap: 20vh;
}
#btns button {
padding: 1.5vh 6vw;
background-color: #a17fd0;
border-radius: 10px;
font-weight: 700;
}
#btns button:hover {
cursor: pointer;
border: 2px solid #7e9eb3;
}
#back {
padding: 1.5vh 6vw;
background-color: #a17fd0;
border-radius: 10px;
font-weight: 700;
}
#back:hover {
cursor: pointer;
border: 2px solid #7e9eb3;
}
#changeTheme {
background-color: #ba96d2;
height: 100vh;
width: 100vw;
padding: 4vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.alltheme {
margin: 2vh 2vw;
padding: 1.2vh 2vw;
border: none;
border-radius: 10px;
font-weight: 600;
}
.alltheme:hover {
cursor: pointer;
}
#green {
color: rgb(0, 0, 0);
background-color: rgb(92, 219, 92);
}
#volcano {
color: #fff;
background: linear-gradient(to right bottom, yellow, orange, red);
}
#hacker {
color: rgb(0, 255, 0);
background-color: #222;
}
#indian {
color: rgb(0, 0, 255);
background: linear-gradient(rgb(255, 166, 0), #fff, rgb(11, 192, 11));
}