-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
107 lines (97 loc) · 1.93 KB
/
index.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
*{
margin: 0;
padding: 0;
}
body{
background-image: url(/img/bgc.jpg);
background-position: center;
background-size: cover;
height: 600px;
}
.container{
background-color: rgb(240, 236, 236);
height: 500px;
width: 600px;
margin: 30px auto 300px auto;
border-radius: 15px;
padding: 30px 60px;
}
.container .form{
display: flex;
flex-direction: row;
margin-bottom: 40px;
}
.container .form .input{
height: 50px;
width: 500px;
margin-right: 10px;
border: none;
border-radius: 20px;
padding-left: 20px ;
}
.container .form .input:hover{
border-radius: none;
border-bottom: 3px rgb(14, 121, 251) solid;
}
.container .form .btn{
background-color:rgb(14, 121, 251);
height: 50px;
width: 100px;
border-radius: 40px;
border: none;
color: white;
font-size: medium;
}
.container .country{
display: flex;
flex-direction: column;
height: 400px;
width: 500px;
margin: 0 auto;
}
.container .country img{
width: 250px;
height: 150px;
margin: 0 auto;
margin-top: 100px;
position: relative;
bottom: 480px;
left: 0px;
}
.container .country .country-name{
padding-top: 10px;
font-size: x-large;
margin: 0 auto;
font-weight: bolder;
font-weight: 600;
text-transform: uppercase;
position: relative;
bottom: 190px;
left: 0px;
}
.container .country .info{
display: flex;
flex-direction: column;
margin-top: 200px;
}
.container .country .info .h4{
font-size: larger;
padding-bottom: 5px;
}
.container .country .info .h4 .xogta{
padding-left: 10px;
font-size: large;
font-weight: 500;
font-family: Times, serif;
}
.container .country .refresh{
background-color: rgb(14, 121, 251);
height: 50px;
width: 60px;
border: none;
border-radius: 50px;
position: absolute;
bottom: 20%;
left: 48%;
color: white;
}