-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
128 lines (100 loc) · 1.43 KB
/
custom.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
122
123
124
125
126
127
128
/* Navbar */
.navbar {
border-bottom: 1px solid #dee2e6;
}
.navbar-brand {
font-weight: bold;
}
.form-control {
border-radius: 0;
}
.input-group-btn:last-child > .btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
/* Weather Div */
.card {
border: none;
}
.card-img-top {
object-fit: cover;
}
.card-title {
font-weight: bold;
}
.card-text {
font-size: 1.1rem;
}
/* Rating Div */
.d-flex {
align-items: center;
}
.fa-star {
color: #FFD700;
}
/* Forecast Div */
.mb-3 {
margin-bottom: 1rem;
}
.img-fluid {
max-width: 100%;
}
/* Map and Climate Divs */
#mapid {
width: 100%;
}
.card-title {
font-weight: bold;
}
.btn-primary {
border-radius: 0;
}
/* Webcam and Ratings Divs */
.card-img-top {
height: 200px;
object-fit: cover;
}
.table {
font-size: 1.1rem;
}
.table a {
text-decoration: none;
}
.table a:hover {
text-decoration: underline;
}
/* Responsive */
@media screen and (max-width: 991px) {
.card-img-top {
height: 150px;
}
.navbar-brand {
margin-right: 0 !important;
}
.navbar-nav {
width: 100%;
}
.input-group-btn:last-child > .btn {
border-radius: 0;
}
.btn-outline-secondary {
border-radius: 0;
}
.card-text {
font-size: 0.9rem;
}
#mapid {
height: 300px;
}
}
@media screen and (max-width: 767px) {
.card-img-top {
height: 100px;
}
.card-text {
font-size: 0.8rem;
}
#mapid {
height: 200px;
}
}