-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (78 loc) · 1.43 KB
/
style.css
File metadata and controls
97 lines (78 loc) · 1.43 KB
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
::-webkit-scrollbar{
display: none;
}
@font-face {
font-family: "MyFont";
src: url(font/Kanit-Regular.ttf);
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url(images/desktop.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
font-family: "MyFont";
color: white;
}
.frame{
width: 70%;
margin: 100px auto;
text-align: center;
#reg{
font-size: 20px;
font-weight: 400;
}
#temp{
font-size: 100px;
font-weight: 600;
}
.humidity{
width: 30%;
margin: 10px auto;
display: flex;
justify-content: center;
}
#conditionText{
font-size: 20px;
font-weight: 500;
}
}
footer{
position: absolute;
bottom: 0;
left: 5%;
width: 90%;
display: flex;
justify-content: space-between;
#lastUpd{
font-weight: 400;
}
#text{
font-weight: 400;
letter-spacing: 2px;
}
#autor a{
text-decoration: none;
color: rgb(39, 132, 144);
:hover{
color: rgb(18, 111, 123);
}
}
}
#err{
font-weight: 500;
text-align: center;
}
@media screen and (max-width: 650px) {
body{
background-image: url(images/phone.jpg);
}
footer{
flex-direction: column;
text-align: center;
}
}