-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
119 lines (96 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
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
#header-div{
background: linear-gradient(rgba(0, 64, 99, 0.5), rgba(0,0,0,0.5)), url(/globe.jpeg);
background-size: cover;
background-position: center;
height: 450px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: black;
}
h1 {
margin-top: 0;
color: white;
font-size: 60px;
letter-spacing: 7px;
margin: 15px;
}
h3 {
color: white;
margin: 5px;
}
#search {
margin-top: 30px;
font-size: 25px;
border-radius: 24px;
border: 1.5px solid rgb(169, 167, 167);
width: 500px;
height: 40px;
text-align: center;
border-color: rgb(0, 179, 255);
}
#country-display {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#countryBoxes{
width: 160px;
height: 160px;
background: linear-gradient(#00406366, rgba(0,0,0,0.4)),url(/map_image.jpeg);
background-position: center;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
margin: 15px;
}
#text{
color: white;
}
#listLength {
color: aqua;
margin: 0 4px;
font-size: 20px;
font-weight: bold;
font-style: italic;
}
#dynamic-text {
display: flex;
color: white;
justify-content: center;
align-items: center;
/* margin: 20px 0; */
}
#anyWordTarget {
color: aqua;
font-weight: bold;
font-size: 20px;
font-style: italic;
margin: 0 4px;
}
#buttons{
margin: 10px;
}
button {
font-size: 17px;
padding: 10px;
background-color: rgb(0, 179, 255);
border: 0;
color: white;
border-radius: 2px;
margin: 2px;
}
button:hover{
background-color: rgb(0, 152, 216);
cursor: pointer;
}
button:active {
background-color: rgb(0, 65, 93);
}