-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
145 lines (124 loc) · 2.15 KB
/
Copy pathstyle.css
File metadata and controls
145 lines (124 loc) · 2.15 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
html,
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
}
input,
select,
option,
button {
cursor: pointer;
font-family: 'Montserrat', sans-serif;
}
select {
appearance: none;
background-image: url(selector.png);
background-repeat: no-repeat;
background-size: 20px;
background-position-x: 97%;
background-position-y: center;
}
body {
background-color: #1c1c1c;
height: 100vh;
}
main {
padding: 3em 0;
}
/* Container */
.container {
margin: 0 auto;
max-width: 550px;
min-height: 500px;
background-color: #1f2937;
}
@media (max-width: 992px) {
.container {
max-width: 80%;
}
}
@media (max-width: 800px) {
main {
padding: 1em 0;
}
.container {
max-width: 95%;
}
}
/* Form */
#form {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.2em 0.8em;
box-shadow: 0px 10px 4px rgb(36, 37, 38);
z-index: 1000;
}
#colorPicker {
padding: 0;
width: 55px;
height: 35px;
border: 1px solid #e5e5e5;
}
#modePicker {
width: 312px;
border: 1px solid #d1d5db;
border-radius: 6px;
padding: 0.7em;
background-color: #1f2937;
color: #d5d4d8;
font-weight: 500;
}
#form button {
background-color: #3d4b60;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
border-radius: 4px;
color: #fff;
border: none;
padding: 0.7em 0.8em;
}
@media (max-width: 690px) {
#modePicker {
width: 40%;
}
}
/* Color Scheme */
#colorScheme {
display: flex;
justify-content: center;
text-align: center;
color: #d5d4d8;
font-size: 13px;
}
#colorScheme .bg-color {
height: 380px;
width: 20%;
}
#colorScheme .instructions {
margin: 5em 0;
}
#colorScheme ul {
list-style-type: none;
padding: 0;
}
#colorScheme li {
font-size: 1.5em;
margin: 0.5em 0;
}
#colorScheme .color {
cursor: pointer;
width: 100%;
height: 100%;
}
#colorScheme .color-code {
cursor: pointer;
transition: 500ms;
}
#colorScheme .color-code:hover {
font-weight: 700;
}