-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (89 loc) · 1.3 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
100
101
102
103
104
body {
overflow: hidden;
padding: 0;
margin: 0;
box-sizing: border-box;
}
.hidden {
display: none;
}
main {
position: relative;
height: 100vh;
width: 16.5vw;
background-color: blue;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
h1 {
color: white;
}
p {
color: white;
text-align: justify;
padding: 0 1em;
}
form {
display: flex;
flex-direction: column;
padding: 2em;
}
label {
margin-top: 1em;
color: white;
font-size: 1.2rem;
font-weight: bold;
}
input {
padding: 0.4em;
text-align: right;
}
input[name="draw"] {
margin-top: 3em;
padding: 1em;
text-align: center;
}
hr {
width: 100%;
margin: 1em 0em;
}
input[name="random"] {
padding: 1em;
text-align: center;
}
footer {
display: flex;
position: absolute;
bottom: 0;
font-weight: lighter;
}
#lazyrabbit {
fill: white;
height: 10vh;
width: 10vw;
opacity: 0.3;
transform: translateY(7vh);
transition: transform 0.35s ease-out;
}
#lazyrabbit:hover {
cursor: pointer;
opacity: 1;
transform: translateY(0vh);
}
#canvas1 {
position: absolute;
top: 0;
right: 0;
}
#toast-box {
position: fixed;
bottom: 2vh;
left: 20vw;
padding: 10px;
font-size: 2rem;
color: white;
background-color: blue;
border-radius: 2px;
}