-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.css
87 lines (75 loc) · 1.42 KB
/
index.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
.content-container h1 {
margin-top: 0px;
}
.content-container h3 {
font-weight: 300;
margin-top: 0px;
}
.info {
display: flex;
gap: 5px;
}
.content-container {
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
background-color: white;
padding: 40px;
width: 40%;
border-radius: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-bottom: 10%;
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #ddfcef;
font-family: "Lexend", sans-serif;
font-weight: 300;
font-optical-sizing: auto;
font-style: normal;
height: 100vh;
background-image: url("./assets/pattern.svg");
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
backdrop-filter: blur(4px);
}
#color-containers {
display: flex;
gap: 20px;
margin-bottom: 30px
}
#result-container {
flex: 1;
/* background-color: #f1781c; */
border: 3px solid #f1781c;
/* color: white; */
border-radius: 20px;
gap: 10px;
padding: 20px 0px;
margin-bottom: 20px;
}
.color-container {
flex: 1;
border: 3px solid;
border-radius: 20px;
gap: 10px;
padding: 20px 0px;
}
.color-container.red {
border-color: #FF8181;
}
.color-container.blue {
border-color: #3ca9c4;
}
.color-container.green {
border-color: #89e5bd;
}
.filter {
display: flex;
gap: 10px;
align-items: center;
}