-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (61 loc) · 1.24 KB
/
Copy pathstyles.css
File metadata and controls
65 lines (61 loc) · 1.24 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
@import url("https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Dancing+Script&family=Open+Sans:wght@300;500&family=Roboto&family=Roboto+Slab:wght@200&display=swap");
body {
margin-top: 30px;
background: radial-gradient(
circle at 10% 20%,
rgb(126, 70, 195) 0%,
rgb(156, 236, 247) 90%
);
font-family: "Roboto Slab", serif;
}
h1 {
text-align: center;
margin-bottom: 20px;
font-weight: bold;
}
.date {
text-align: center; /* Center-align the text content */
margin: 20px;
font-weight: bold;
}
#city {
font-size: 20px;
font-weight: bold;
}
#current-temp {
font-weight: bold;
font-size: 50px;
}
#description {
font-weight: bold;
font-size: 15px;
}
#weather {
padding: 0;
text-align: left;
font-weight: bold;
}
sup {
font-size: 30px;
}
#4-day {
border: 2px solid black;
}
ul {
display: flex;
justify-content: center; /* Center items horizontally */
padding: 10px 0; /* Add vertical padding for spacing */
list-style: none; /* Remove default list styles */
}
ul li {
padding: 3px 8px; /* Adjust padding for list items */
margin-right: 10px; /* Add a smaller margin between list items */
}
@media (min-width: 768px) {
.input-group {
width: 100%;
}
h1 {
text-align: center;
}
}