-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
52 lines (46 loc) · 824 Bytes
/
main.css
File metadata and controls
52 lines (46 loc) · 824 Bytes
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
* {
margin: 0;
padding: 0;
background-color: #334;
}
p {
color: white;
}
header {
display: flex;
justify-content: center;
align-items: center;
padding: 50px 15px 15px;
}
/* Haku palkin tyylittely */
header input {
width: 100%;
max-width: 280px;
padding: 10px 15px;
border: none;
outline: none;
background-color: white;
font-size: 15px;
font-weight: bold;
border-radius: 20px;
}
main {
flex: 1 1 100%;
padding: 25px 25px 50px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
/* Kaupuunki tekstin tyylittely */
.location .city {
color: white;
font-size: 32px;
margin-bottom: 5px;
}
/* Lämpötilan tyylittely */
.current .temp {
color: white;
font-size: 50px;
margin: 20px;
}