-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
47 lines (42 loc) · 844 Bytes
/
styles.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
body {
font-family: Arial, sans-serif;
min-width: 300px;
padding: 20px;
margin: 0;
background-color: #f0f2f5; /* Slightly darker for comfort */
color: #333;
}
#transit-info {
margin-bottom: 30px;
}
.station {
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
margin-bottom: 15px;
/* Remove flex layout */
/* display: flex;
justify-content: space-between;
align-items: center; */
}
.station h3 {
margin: 0 0 10px;
font-size: 1.4em; /* Slightly larger font */
color: #007bff;
}
.station p {
margin: 5px 0;
font-size: 1em; /* Standardize font size */
color: #555;
}
#fortune-cookie {
font-style: italic;
text-align: center;
padding: 15px;
background-color: #fff8e1;
border: 1px solid #ffd54f;
border-radius: 8px;
color: #333;
font-size: 1.2em;
}