-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (43 loc) · 805 Bytes
/
style.css
File metadata and controls
49 lines (43 loc) · 805 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
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
scroll-behavior: smooth;
color: inherit;
outline: none;
}
body{
text-align: center;
background: #193549;
color: white;
font-family: Arial, Helvetica, sans-serif;
font-weight: 100;
font-size: 40px;
}
:root{
--base:#ffc600;
--spacing:10px;
--blur:10px;
--height:10vh;
--rotate:0deg;
--radius:0px;
}
img{
padding: var(--spacing);
background: var(--base);
filter: blur(var(--blur));
height: var(--height);
transform: rotate(var(--rotate));
border-radius: var(--radius);
}
h2{
color: var(--base);
}
.controls{
margin-bottom: 50px;
margin-top: 20px;
}
input{
width: 100px;
}