-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
51 lines (42 loc) · 708 Bytes
/
styles.css
File metadata and controls
51 lines (42 loc) · 708 Bytes
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
*{
color: #9e9b9b;
}
#title {
font-family: Lack, sans-serif;
font-style: normal;
font-weight: bold;
}
#inputLabel {
font-size: small;
}
#body {
background: linear-gradient(#e66465, #9198e5);
}
.main {
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 500px;
height: 500px;
background-color: #0000005e;
border-radius: 10px;
padding: 10px;
margin: 10px;
}
.main__inner{
position: relative;
display: flex;
text-size-adjust: 150%;
}
.main__inner.low{
color: #dbdbdb;
}
.button {
position: relative;
}
#attempts{
margin-bottom: 2px;
outline-color: aqua;
padding-bottom: 2px;
}