-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
71 lines (63 loc) · 1.02 KB
/
style.css
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
:root {
--base: #ffc600;
--spacing: 5px;
--blur: 0px;
--brightness: 1;
--contrast: 1;
--sepia: 0%;
--grayscale: 0%;
--opacity: 100%;
--hueRotate: 0deg;
--invert: 0%;
}
body {
font-size: 10px;
padding: 0;
margin: 0;
background: #508fbd;
}
.container {
display: flex;
height: 100vh;
}
.left-menu {
width: 15%;
font-size: 1.2rem;
border: 1px solid;
border-radius: 10px;
padding: 5px 15px 5px 10px;
}
.filter-item {
width: 100%;
padding: 4px 0 4px 0;
}
input {
width: 100%;
}
.content {
font-size: 2rem;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
img {
height: 30vw;
width: 60%;
padding: var(--spacing);
background: var(--base);
filter:
blur(var(--blur))
brightness(var(--brightness))
contrast(var(--contrast))
sepia(var(--sepia))
grayscale(var(--grayscale))
opacity(var(--opacity))
hue-rotate(var(--hueRotate))
invert(var(--invert))
}
@media all and (max-width: 800px) {
.left-menu {
width: 30%;
}
}