-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (104 loc) · 1.89 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
118
119
120
121
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
--primary-color: #200;
--secondary-color: #250;
--tertiary-color: #500;
--accent-color: #700;
--background-color: #010;
}
* {
padding: 0;
margin: 0;
content: border-box;
}
body {
background-color: #000000;
font-family: 'Montserrat', sans-serif;
}
header {
background-color: #e0e0e0e0;
width: 100%;
height: 20%;
padding: 1em;
}
.search {
color: gray;
background-color: #f0f0f0;
width: 100%;
height: 10%;
padding: 1em;
}
.searchBar {
color: black;
background-color: #f0f0f0;
width: 20%;
height: 10%;
padding: 1em;
}
.searchBar label {
color: white;
}
input[type="search"] {
border-radius: 15em;
}
.dataContainer {
display: flex;
flex-direction: row;
align-items: center;
align-content: center;
justify-content: center;
flex-wrap: wrap;
margin: 1em;
width: 100%;
height: 100%;
}
.card {
border: none;
border-radius: 2.5em;
width: 25%;
height: 60em;
margin: 1em;
padding: 1em;
background-color: #FFFFFF;
box-shadow: 0.25em 0.5em rgba(0,0,0,0.5);
}
.card img {
width: 90%;
height: auto;
margin: 1em;
}
.cardHeader {
width: 90%;
height: 8em;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: center;
align-content: center;
gap: 1em;
color: white;
background-color: black;
border-radius: 1em 1em 0em 0em;
padding: 1em;
}
.cardHeader img {
width: 3em;
height: 3em;
margin: 0.5em;
}
.flagContainer, .infoPays {
margin: 1em 0;
}
.capital, .population {
display: flex;
flex-direction: row;
}
.cardFooter {
bottom: 0;
}
footer {
background-color: #e0e0e0e0;
width: 100%;
height: 20%;
padding: 1em;
}