-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (60 loc) · 1.35 KB
/
style.css
File metadata and controls
71 lines (60 loc) · 1.35 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
body {
background: linear-gradient(to top left, #f8d842, #6e2ad8) no-repeat center center fixed;
background-size: cover;
padding-bottom: 2rem;
}
.gameNumbers {
width: 70rem;
height: auto;
background: rgba(255, 255, 255, 0.3);
border-radius: 15px;
padding: 1rem;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
margin: 2rem auto;
transition: all 0.5s ease;
}
.numberBtn {
width: 5.8rem;
height: 3.5rem;
transition: all 0.5s ease;
-webkit-text-stroke-color: black !important;
}
.heading-main {
width: max-content;
margin: 4rem auto 4rem auto;
-webkit-text-stroke-width: 0.2rem;
-webkit-text-stroke-color: black;
text-shadow: 0 3px 3px black;
}
.shadow-activated {
box-shadow: 0 1px 15px rgba(0, 0, 0, 0.5);
}
.shadow-active {
box-shadow: 0 15px 90px black;
}
/* Designing for scroll-bar */
::-webkit-scrollbar {
width: 15px;
background: transparent;
}
/* Track */
::-webkit-scrollbar-track {
background: darkgray;
border-radius: 5px;
transition: all 0.2s ease;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #ffc107;
border-radius: 5px;
z-index: 55;
border: 4px solid black;
transition: all 2s ease;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #e9c002;
}
.btn-outline-warning {
color: black !important;
}