-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (62 loc) · 1.16 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
body{
background-color:rgb(35, 64, 75)!important;
}
.initialInfo {
text-align: center;
}
h1 {
margin-top : 10vh;
color : #f6fbfe;
}
.card {
background: rgb(241,238,244);
background: linear-gradient(to right, rgba(221,238,244,1) 0%, rgba(90,99,87,1) 31%);
}
.card-header {
background-color: rgba(0, 0, 0, 0.841) !important;
color: white!important;
text-align : center;
font-size : larger;
font-weight : bold;
}
.card-img-top {
display : flex;
align-items : center;
padding : 5%;
height : 40vh;
}
.card-text {
text-align : center;
font-weight : 500;
}
.text-center {
margin-bottom: 2vh;
color: aliceblue;
}
button{
background-color: #0F4C75 !important;
color : white !important;
}
.weather {
color: #2B2A4C;
}
/* Loader CSS */
#loaderContainter {
position: relative;
height : 100%;
width : 100%;
}
.loader {
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
height: 20vh;
}
@media screen and (min-width: 768px) and (min-height: 1024px) {
.card-img-top {
height : 20vh;
}
}