-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (100 loc) · 2.06 KB
/
style.css
File metadata and controls
114 lines (100 loc) · 2.06 KB
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
105
106
107
108
109
110
111
112
113
114
* {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
body {
/* background-color: aliceblue; */
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.header {
height: 100px;
font-size: 42px;
font-weight: 600;
text-decoration: underline;
align-self: stretch;
display: flex;
justify-content: center;
align-items: center;
flex-shrink: 0;
}
.option-container {
height: 50px;
width: 200px;
/* align-self: stretch; */
background-color: darkgray;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-shrink: 0;
border-color: black;
border-style: solid;
border-top-width: 3px;
border-left-width: 3px;
border-right-width: 3px;
border-bottom: 0px;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
}
#slider-value {
color: white;
}
.etch-a-sketch {
height: 480px;
width: 480px;
margin: 0;
padding: 0;
flex-shrink: 0;
display: flex;
flex-wrap: wrap;
border: 3px solid black;
}
.sketch-field {
margin: 0;
background-color: white;
/* flex-wrap: wrap; */
flex-shrink: 0;
}
.button-container {
height: 50px;
width: 200px;
padding: 8px;
display: flex;
align-items: center;
justify-content: space-evenly;
flex-shrink: 0;
background-color: darkgray;
border-color: black;
border-style: solid;
border-bottom-width: 3px;
border-left-width: 3px;
border-right-width: 3px;
border-top: 0px;
border-bottom-right-radius: 10px;
border-bottom-left-radius: 10px;
}
button {
width: 70px;
/* font-size: 18px; */
border-width: 2px;
border-style: solid;
border-radius: 4px;
background-color: white;
}
.color-toggle {
}
.footer {
margin-top: auto;
height: 40px;
align-self: stretch;
/* background-color: lightgray; */
flex-shrink: 0;
display: flex;
justify-content: center;
align-items: center;
}