-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (94 loc) · 1.63 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
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
* {
margin: 0;
box-sizing: border-box;
}
body {
font-family: 'Raleway', sans-serif;
background-color: #74B9FF;
}
.container {
margin: 2em auto;
width: 500px;
}
input {
display: block;
font-size: 1.5rem;
background-color: #192A56;
color: white;
border: none;
padding: .5em;
width: 500px;
}
input::placeholder {
color: rgba(255, 255, 255, .7);
}
.filters-letter {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
}
button {
padding: .5em 1em;
background-color: #67E6DC;
border: none;
text-transform: uppercase;
opacity: .7;
transition: all .2s ease-in;
position: relative;
}
button:hover {
opacity: 1;
cursor: pointer;
background-color: #3C40C6;
transform: scale(1.25);
z-index: 2;
}
button.filters__basic:hover {
z-index: 10;
}
button.active {
background-color: #3C40C6;
}
ul.country-list {
list-style-type: none;
padding: 0;
width: 500px;
}
ul.country-list li {
/* font-size: 1.5rem; */
padding: .5em;
background-color:#0A3D62;
opacity: .9;
display: flex;
align-items: center;
justify-content: space-between;
/* gap: 24px; */
}
ul.country-list li div{
display: flex;
align-items: center;
gap: 24px;
}
/* ul.country-list li span{
display: block;
text-align: left;
flex-grow: 1;
} */
ul.country-list li input{
width: initial;
height: initial;
}
ul.country-list li:hover {
transform: scale(1.025);
opacity: 1;
flex-grow: 1;
}
.hide {
display: none !important;
}
ul.country-list li {
font-size: 1rem;
color: white;
text-decoration: none;
}