-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (106 loc) · 2.51 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Roboto,sans-serif;
}
@media screen and (min-width: 800px){
*{
overflow: hidden;
}
}
body{
background-color: #000000;
}
.container{
max-width: 100vw;
height: 100vh;
width: 95%;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 20px 0;
}
.bars_container{
display: flex;
flex-direction: row;
backdrop-filter: blur(20px) saturate(200%);
-webkit-backdrop-filter: blur(20px) saturate(200%);
background-color: rgba(17, 25, 40, 0.5);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.125);
}
.bar{
width: 2vw;
margin: 0 8px;
background-color: pink;
border: 1px solid black;
border-radius: 0px 0px 5px 5px;
transition: height 0.5s ease-in-out;
}
@media screen and (min-width: 800px){
.ellipse{
position: absolute;
width: 70vw;
height: 70vw;
top: 120vh;
left: 17vw;
vertical-align: center;
background: #1EEDA2;
mix-blend-mode: screen;
filter: blur(308.518px);
}
}
button {
align-items: center;
appearance: none;
border-radius: 4px;
border-style: none;
box-shadow: rgba(0, 0, 0, .2) 0 3px 1px -2px,rgba(0, 0, 0, .14) 0 2px 2px 0,rgba(0, 0, 0, .12) 0 1px 5px 0;
box-sizing: border-box;
cursor: pointer;
display: inline-flex;
font-size: .875rem;
font-weight: 500;
height: 36px;
justify-content: center;
letter-spacing: .0892857em;
line-height: normal;
min-width: 64px;
overflow: visible;
padding: 0 16px;
position: relative;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
}
@media only screen and (min-height: 1080px){
.buttons_container{
margin-bottom: 500px;
}
}
select {
background-color: dodgerblue;
align-items: center;
border-radius: 4px;
border-style: none;
box-shadow: rgba(0, 0, 0, .2) 0 3px 1px -2px,rgba(0, 0, 0, .14) 0 2px 2px 0,rgba(0, 0, 0, .12) 0 1px 5px 0;
box-sizing: border-box;
cursor: pointer;
display: inline-flex;
font-size: .875rem;
font-weight: 500;
height: 36px;
justify-content: center;
letter-spacing: .0892857em;
line-height: normal;
min-width: 64px;
overflow: visible;
padding: 0 16px;
position: relative;
text-align: center;
text-transform: uppercase;
vertical-align: middle;
}