-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (66 loc) · 1.04 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
.container {
width: 700px;
height: 700px;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
box-shadow: 0 0 1em gray;
}
.outer{
display: flex;
flex-wrap: wrap;
gap: 16px;
width: 1000px;
margin: 0 auto;
}
.header, .footer {
flex-basis: 100%;
}
.menu{
display:flex;
flex-direction: column;
flex-basis: 20%;
gap: 16px;
}
body{
font-family: monospace;
}
.header {
font-size: large;
text-align: center;
}
button {
font-family: monospace;
font-weight: bold;
padding: 15px 32px;
font-size: 16px;
border: none;
background-color: #2f75ff;
color: white;
margin: 0 auto;
width: 120px;
}
button:hover{
background-color: azure;
color: black;
}
.picker {
margin: 0 auto;
height: 50px;
width: 120px;
background-color: #2f75ff;
padding: 10px;
}
.picker:hover{
background-color: azure;
}
.size {
margin: 0 auto;
}
label {
margin: 0 auto;
font-family: monospace;
}
.footer{
text-align: center;
}