-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
81 lines (58 loc) · 1.01 KB
/
index.css
File metadata and controls
81 lines (58 loc) · 1.01 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
html, body {
margin: 0;
padding: 0;
background-color: #1F2937;
font-family: sans-serif;
height: 100vh;
}
.container{
height: 500px;
}
header {
display: flex;
justify-content: space-between;
margin: 0em 1em 1em;
padding: 2em;
}
.color-input{
height: 2em;
width: 4em;
cursor: pointer;
}
.color-scheme{
border-radius: 10px;
color: #fff;
background-color: #1F2937;
cursor: pointer;
}
.btn{
border-radius: 10px;
background-color: #3D4B60;
color: #fff;
transition: color .25s;
}
.btn:hover{
color: black;
box-shadow: 0px 1px 5px black;
}
.color-wheel-container{
display: flex;
max-width: 100%;
text-align: center;
height: 300px;
}
.color-window{
width: 20%;
border-top: 1px outset grey;
border-bottom: 1px inset grey;
color: #fff;
font-size: .8em;
letter-spacing: .5px;
}
.color-one,
.color-two,
.color-three,
.color-four,
.color-five {
height: 300px;
}