-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (42 loc) · 780 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (42 loc) · 780 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
:root {
--base: #ffc600;
--spacing: 10px;
--blur: 15px;
--blend-mode: normal;
}
img {
padding: var(--spacing);
background: var(--base);
background-image: url('https://source.unsplash.com/7bwQXzbF6KE/800x500');
background-size: cover;
background-blend-mode: var(--blend-mode);
filter: blur(var(--blur));
}
.h1 {
color: var(--base);
}
/*
misc styles, nothing to do with CSS variables
*/
body {
text-align: center;
background: #193549;
color: white;
font-family: 'helvetica neue', sans-serif;
font-weight: 100;
font-size: 50px;
}
.controls {
margin-bottom: 50px;
}
input {
width: 100px;
}
select {
height: 40px;
width: 200px;
font-size: 25px;
}
select option {
font-size: 30px;
}