-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (74 loc) · 1.44 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
@import "https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
@import url(https://fonts.googleapis.com/css?family=Roboto);
* {
margin: 0;
padding: 0;
}
body {
background-color: white;
}
.headerBg {
background: url("images/bg.jpg")no-repeat center center;
background-size: cover;
}
.headerTxt, .headerInput {
width: 500px;
}
.headerlogo {
width: min-content;
}
.headerlogo img {
margin: 150px 0;
}
.slogan {
position: absolute;
bottom: 200px;
right: 150px;
font-size: 5em;
font-weight: bold;
transform: rotate(-30deg);
}
button a, button a:focus, button a:active, button a:hover {
color: white;
text-decoration: none;
}
@media (max-width: 576px) {
.headerBg, #content {
width: 100%;
padding: 10px;
text-align: center;
}
.headerlogo {
width: 100%;
}
.headerlogo img {
margin-top: 100px;
margin-bottom: 100px;
width: 90%;
}
.input-group {
display: block;
}
.headerTxt {
font-size: 1.5em;
margin-bottom: 20px;
}
.headerTxt, .headerInput {
width: 100%;
}
#cityInput {
margin: 0 auto 20px auto !important;
width: 75%;
}
#inputBtn {
width: 30%;
}
.slogan {
display: none;
visibility: hidden;
}
table {
width: 100% !important;
font-size: 3vw;
}
}