-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (46 loc) · 904 Bytes
/
style.css
File metadata and controls
51 lines (46 loc) · 904 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
.buttons {
background-color: hsl(65, 100%, 93%);
color: rgb(90, 90, 90);
padding: 2rem;
border-radius: 40px;
}
.current-grid {
background-color: hsl(65, 100%, 93%);
margin-bottom: 0.5rem;
padding: 0.6rem;
}
.new-grid {
padding: 0 0.6rem;
background-color: hsl(68, 84%, 58%);
border-radius: 10px;
}
input[type="range"] {
background: red;
}
button {
margin: 1rem;
padding: 1rem;
border-radius: 40px;
border: none;
background-color: hsl(76, 51%, 52%);
color: #fff;
font-weight: bolder;
}
button:hover{
background-color: hsl(76, 46%, 36%);
}
@media (orientation: portrait) {
.container {
flex-direction: column;
}
}