-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathstyless.css
More file actions
96 lines (81 loc) · 1.52 KB
/
styless.css
File metadata and controls
96 lines (81 loc) · 1.52 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
body {
font-family: 'Rubik', sans-serif;
margin: 0;
padding: 0;
height: 100vh;
background-color: rgba(162, 222, 248, 0.51);
}
.container {
max-width: 1000px;
margin: 0 auto;
text-align: left;
padding: 30px;
background-color: rgba(255, 255, 255, 0.842);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
margin-top: 105px;
color: #010101;
}
h1 {
font-size: 40px;
color: #000000;
margin: 10px;
}
input[type="text"] {
width: 100%;
padding: 15px 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 10px;
}
button {
background-color: #000000;
color: #ffffff;
border: none;
padding: 20px 30px;
border-radius: 10px;
cursor: pointer;
margin: 10px;
font-weight: bold;
}
button:hover {
background-color: #ffffff;
color: #000000;
border: none;
padding: 20px 30px;
border-radius: 10px;
cursor: pointer;
margin: 10px;
transition-duration: 0.3s;
font-weight: bold;
}
#icon {
width: 150px;
height: 150px;
color: #fff;
opacity: 0;
margin-left: 150px;
margin-right: 50px;
}
.info--flex {
display: flex;
justify-content: space-between;
align-items: center;
}
#location {
font-size: 35px;
margin-top: 20px;
margin-bottom: 10px;
}
#temperature {
font-size: 50px;
font-weight: bold;
}
#description {
font-style: italic;
}
.temp--flex {
display: flex;
justify-content: space-between;
align-items: center;
}