-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (85 loc) · 1.47 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
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300&display=swap');
body{
background-color: #979797;
display: flex;
}
*{
font-family: Oxygen;
}
.card{
background-color: #ffffff;
padding: 20px;
width: 100px;
height: 100px;
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 20px;
cursor: pointer;
margin: 10px;
}
.player{
margin-bottom: 10px;
}
.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
z-index: 9999;
}
*{
text-align: center;
outline: none;
}
input{
border: none;
border-bottom: 1px solid #000000;
background: none;
outline: none;
padding-bottom: 5px;
}
button{
border: none;
outline: none;
background: #00b412;
color: #ffffff;
padding: 10px 20px;
border-radius: 10px;
margin-left: 15px;
margin-bottom: 15px;
margin-top: 10px;
}
a{
color:black;
}
.overlay{
position: fixed;
background-color: #979797;
z-index: 100000;
display: none;
align-items: center;
height: 100%;
width: 100%;
top: 0;
left: 0;
overflow-y: scroll !important;
}
.overlay-content{
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
border-radius: 10px;
overflow-y: scroll !important;
}
code{
font-family: 'Courier New', Courier, monospace !important;
}
button{
cursor: pointer !important;
}