forked from wesbos/JavaScript30
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystyle.css
More file actions
52 lines (43 loc) · 695 Bytes
/
mystyle.css
File metadata and controls
52 lines (43 loc) · 695 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
51
52
:root {
--base-color: yellow;
--blur: 0px;
--spacing: 0px;
}
* {
padding: 0;
margin: 0;
outline: 0;
box-sizing: border-box;
}
body {
background-color: #193549;
color: white;
font-family: 'helvetica neue', sans-serif;
font-weight: 100;
}
h1 {
font-size: 4rem;
margin-top: 1rem;
}
label {
font-size: 2rem;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.controls {
margin-top: 25px;
margin-bottom: 25px;
}
img {
background-color: var(--base-color);
filter: blur(var(--blur));
-webkit-filter: blur(var(--blur));
padding: var(--spacing);
}
.base-color {
color: var(--base-color);
}