-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
113 lines (110 loc) · 1.88 KB
/
styles.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
body{
font-family: Arial, Helvetica, sans-serif;
}
nav h3{
margin-left: 10px;
}
nav{
display: flex;
justify-content: space-between;
}
nav i{
font-size: 25px;
margin: 10px 5px 0px 0px;
}
nav i:hover{
cursor: pointer ;
}
.main-display{
/* padding-bottom: 30px; */
background-color: #F3F7F6;
height: 100%;
margin: 0px;
}
.filter-section{
display: flex;
justify-content: space-between;
}
.search-section{
margin: 18px 0 0 25px;
}
.filter-options p{
font-size: 15px;
margin: 12px 20px 4px 0;
}
select{
width: 100px;
height: 25px;
margin-left: 5px;
}
#countries-tempelate{
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 10px;
}
.country-name{
min-height: 230px;
width: 160px;
background-color: rgb(255, 255, 255);
text-align: center;
box-shadow: 1px 1px 10px #8e8e8e;
margin: 9px;
border-radius: 4px;
padding: 8px;
}
.country-name img{
width: 100%;
border-radius: 2px 2px 0px 0px;
}
.country-name button{
height: 17px;
width: 50px;
font-size: 10px;
padding: 1px;
/* margin-top: -1px; */
}
.country-name button:hover{
cursor: pointer;
}
.country-name h3{
font-size: 16px;
margin: 12px 0 12px 0;
}
.country-name p{
font-size: 14px;
margin-top: 9px;
word-wrap: break-word;
}
#sample{
display: none;
}
.favourite-section{
height: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
padding-bottom: 20px;
}
.outer-of-favourite{
text-align: center;
display: none;
margin: 10px;
height: 100%;
padding-top: 10px;
background-color: rgb(255, 244, 252);
}
.favourite-section h3{
color: grey;
margin-top: 10px;
display: none;
}
.outer-of-favourite h2{
font-size: 25px;
}
.noMatchFound{
color: grey;
font-size: 40px;
font-weight: 700;
}