-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
38 lines (38 loc) · 701 Bytes
/
index.css
File metadata and controls
38 lines (38 loc) · 701 Bytes
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
.cities-container{
display: flex;
flex-direction: column;
width: fit-content;
}
.flex-row-space-between{
display: flex;
flex-direction: row;
justify-content: space-between;
}
.city{
border: 2px gray solid;
border-radius: 5px;
margin-bottom: 10px;
width: 300px;
padding: 3px;
}
.city > h5{
margin: 2px;
}
.rmv-btn{
background: rgba(223, 16, 16, 0.628);
border: 0px;
border-radius: 3px;
}
.add-btn{
background: rgba(23, 223, 16, 0.628);
border: 0px;
border-radius: 3px;
}
.add-btn:hover{
background: rgba(9, 255, 0, 0.628);
cursor: pointer;
}
.rmv-btn:hover{
background: rgba(237, 10, 10, 0.774);
cursor: pointer;
}