-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweatherApp.css
85 lines (84 loc) · 1.61 KB
/
weatherApp.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
.weather-info {
padding: 1em;
color: #f24704;
font-weight: bold;
}
body {
margin: 8em;
font-family: "Roboto", "Helvetica", "Arial", "Sans Serif";
max-width: 100%;
overflow-x: hidden;
background: url("./images/background-image1.jpg") no-repeat center center
fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#output {
width: 70%;
margin-left: 15%;
margin-right: 15%;
}
.content:before {
content: "";
position: fixed;
left: 0;
right: 0;
z-index: -1;
display: block;
background-image: url("./images/background-image1.jpg");
width: 100%;
height: 100%;
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}
.content {
position: fixed;
left: 0;
right: 0;
z-index: 0;
margin-left: 20px;
margin-right: 20px;
}
#confirm-city-button {
display: inline-block;
border-radius: 2px;
border: none;
height: 45px;
padding: 0;
margin-top: 5px;
margin-bottom: 5px;
width: 40%;
background-color: transparent;
color: #f07444;
border: 1px solid #f07444;
transition: 0.2s ease;
}
#confirm-city-button:hover {
background-color: #f07444;
color: white;
transition: 0.2s ease;
}
#city-name-input {
width: 40%;
height: 2.5em;
border: 0.1em solid #f07444;
border-radius: 0.5em;
}
#city-name-input::placeholder {
color: #f0a283;
}
#city-name-input:focus {
outline: none !important;
border: 0.1em solid #f24704;
box-shadow: 0 0 0.3em #719ece;
}
.input-section {
display: flex;
flex-direction: column;
align-items: center;
}