-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
87 lines (73 loc) · 1.15 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
.container {
max-width: 800px;
margin: auto;
padding-top: 20px;
text-align: center;
align-items: center;
justify-content: center;
display: grid;
}
input {
border-radius: 8px;
height: 24px;
}
#log {
align-content: center;
justify-content: center;
/* width: 400px;
height: 300px; */
background: rgba(25,25,25,0.3);
border: 3px solid rgba(25,25,25,0.6);
border-radius: 20px;
backdrop-filter: blur(15px);
padding-top: 100px;
}
button, #option1, #option2, #option3, #option4 {
cursor: pointer;
}
#log p {
font-size: 16px;
margin-top: 110px;
margin-left: 250px;
}
#log button {
margin-left: 210px;
}
h1 {
font-size: 36px;
margin-bottom: 30px;
}
h2 {
font-size: 28px;
margin-bottom: 20px;
}
#options {
font-size: 30px;
text-align: left;
margin-bottom: 20px;
margin-left: 50px;
padding-top: 50px;
margin-bottom: 20px;
/* display: none; */
}
#options input {
margin-bottom: 20px;
}
button {
background-color:bisque;
font-weight: bold;
font-size: 20px;
margin-top: 20px;
margin-right: 10px;
border-radius: 8px;
}
p {
font-size: 24px;
margin-bottom: 20px;
}
#result {
margin-top: 50px;
}
.hidden {
display: none;
}