-
Notifications
You must be signed in to change notification settings - Fork 966
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (84 loc) · 1.9 KB
/
style.css
File metadata and controls
91 lines (84 loc) · 1.9 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
* {
margin: 0;
padding: 0;
box-sizing: border-box;
overflow: hidden;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body {
background: linear-gradient(135deg, #e0c3fc, #8ec5fc); /* soft gradient */
}
.outer-box {
border: 0px solid red;
border-radius: 16px;
height: 90vh;
width: 80%;
margin: auto;
margin-top: 30px;
box-shadow: 0px 6px 18px rgba(0,0,0,0.2); /* soft shadow */
background: rgba(255, 255, 255, 0.6); /* frosted effect */
backdrop-filter: blur(6px);
}
.panel-top {
display: flex;
flex-direction: row;
padding: 20px 30%;
justify-content: space-around;
background: linear-gradient(90deg, #6a11cb, #2575fc);
color: white;
border-radius: 16px 16px 0 0;
box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}
.score {
display: flex;
flex-direction: row;
gap: 12px;
}
.score h2 {
font-size: 24px;
}
.score p {
font-size: 22px;
border: 2px solid white;
border-radius: 8px;
background: white;
color: #2575fc;
font-weight: 500;
width: 55px;
display: flex;
justify-content: center;
align-items: center;
transition: all 0.3s ease;
}
.score p:hover {
background: #e0e7ff;
color: #6a11cb;
}
.panel-bottom {
background: #ffffff;
height: 90%;
border-radius: 0 0 16px 16px;
padding: 20px;
box-shadow: inset 0px 4px 10px rgba(0,0,0,0.1);
}
/* Bubble buttons */
.bubble {
display: inline-block;
padding-left: 18px;
padding-top: 10px;
font-size: 22px;
background: linear-gradient(135deg, #ff758c, #ff7eb3);
margin: 8px;
color: white;
border-radius: 50%;
height: 55px;
width: 55px;
box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
transition: all 0.3s ease;
}
.bubble:hover {
background: linear-gradient(135deg, #43cea2, #185a9d);
color: #fff9c4;
transform: scale(1.1);
cursor: pointer;
}