-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (78 loc) · 1.44 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
html, body {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(47, 54, 64);
color: white;
}
body {
height: auto;
padding: 1rem;
border-radius: 0.5em;
background-color: #353B48;
display: flex;
flex-direction: column-reverse;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.actions {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
justify-content: space-between;
margin-top: 0.5rem;
font-size: 0.9rem;
}
#sliders {
display: flex;
justify-content: space-between;
}
#sliders div {
display: flex;
}
#gridSize {
margin-right: 1rem;
}
#buttons {
margin-top: 1rem;
display: flex;
justify-content: space-between;
}
.button:last-child {
margin-right: 0;
}
.input {
height: 100%;
display: flex;
}
.input > label {
align-self: center;
margin-right: 0.3rem;
}
.button {
border-radius: 0.25rem;
padding: 0.5rem;
padding-left: 1rem;
padding-right: 1rem;
border: none;
color: white;
background-color: rgb(72, 126, 176);
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
transition: 0.3s;
font-size: 1.2rem;
width: 100%;
margin-right: 1rem;
}
.button:hover {
border-radius: 0.5rem;
cursor: pointer;
background-color: rgb(64, 115, 158);
}