-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect.css
More file actions
184 lines (176 loc) · 4.22 KB
/
select.css
File metadata and controls
184 lines (176 loc) · 4.22 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
body {
overflow-x: hidden;
background-color: #000000;
background-image: url("images/Untitled.png");
background-repeat: no-repeat;
background-size: cover;
font-family: "Plus Jakarta Sans", sans-serif;
}
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
border-radius: 5px;
background: #fcfcfcae;
}
/* Handle */
::-webkit-scrollbar-thumb {
border-radius: 5px;
background: #f7f7f7c0;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #858585;
}
.heading {
justify-content: center;
align-items: center;
justify-items: center;
margin-left: auto;
margin-right: auto;
width: 90%;
font-family: "Plus Jakarta Sans", sans-serif;
color: white;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
margin-top: 10px;
margin-bottom: .5rem;
}
.flex-container {
margin: 0 auto;
height: 85vh;
width: 90%;
/* border: 2px white solid; */
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-around;
align-items: center;
align-content: center;
}
.flex-items:nth-child(odd) {
border-radius: 32px;
box-shadow: 0px 0px 7px 3px #728891af;
animation: glow ease-in-out .5s infinite;
}
.flex-items:nth-child(1) {
overflow-y: hidden;
padding: 30px 6px 6px 6px;
line-height: 20px;
text-align: left;
font-family: "Plus Jakarta Sans", sans-serif;
cursor: pointer;
transition: .5s ease-in-out;
color: transparent;
filter: brightness(0.9);
background: url("images/universe_lnd.jpg") no-repeat center center/cover;
height: 85%;
width: 35%;
/* border: 2px white solid; */
display: block;
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
align-self: center;
order: 0;
}
.flex-items:nth-child(2) {
overflow-y: hidden;
padding: 0;
font-size: 50px;
font-weight: bolder;
text-align: center;
font-family: "Plus Jakarta Sans", sans-serif;
border-radius: 30px;
color: white;
transition: .5s ease-in-out;
height: 20%;
width: 8%;
/* border: 2px white solid; */
display: block;
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
align-self: center;
order: 0;
}
.flex-items:nth-child(3) {
overflow-y: hidden;
padding: 30px 6px 6px 6px;
line-height: 20px;
text-align: left;
font-family: "Plus Jakarta Sans", sans-serif;
border-radius: 30px;
cursor: pointer;
transition: .5s ease-in-out;
color: transparent;
filter: brightness(0.9);
background: url("images/solar_lnd.jpg") no-repeat center center/cover;
height: 85%;
width: 35%;
/* border: 2px white solid; */
display: block;
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
align-self: center;
order: 0;
}
#h-p {
line-height: 45px;
font-family: "Plus Jakarta Sans", sans-serif;
font-weight: bolder;
font-size: 40px;
}
.flex-items:nth-child(odd):hover {
filter: brightness(1);
color: rgb(255, 255, 255);
text-shadow: 0 0 3px rgb(0, 0, 0);
overflow-y: auto;
scale: 1.009;
background-color: #1111041d;
box-shadow: 0px 0px 10px 10px #d0ecf7ab;
transition: .5s ease-in-out;
}
.flex-items:nth-child(odd):active {
filter: brightness(1);
color: rgb(255, 255, 255);
text-shadow: 0 0 3px rgb(0, 0, 0);
overflow-y: auto;
scale: 1.009;
rotate: 1deg;
background-color: #1111041d;
box-shadow: 0px 0px 10px 10px #76c9ebab;
transition: .5s ease-in-out;
}
.flex-items:nth-child(3):hover {
filter: brightness(1);
color: rgb(255, 255, 255);
text-shadow: 0 0 3px rgb(0, 0, 0);
overflow-y: auto;
scale: 1.009;
background-color: #1111041d;
box-shadow: 0px 0px 10px 10px #d0ecf7ab;
transition: .5s ease-in-out;
}
.flex-items:nth-child(3):active {
filter: brightness(1);
color: rgb(255, 255, 255);
text-shadow: 0 0 3px rgb(0, 0, 0);
overflow-y: auto;
scale: 1.009;
rotate: 1deg;
background-color: #1111041d;
box-shadow: 0px 0px 10px 10px #f8bb60ab;
transition: .5s ease-in-out;
}
p {
font-family: "Plus Jakarta Sans", sans-serif;
font-size: 13px;
color: white;
font-weight: lighter;
margin: 0;
}