-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathannouncements.css
More file actions
115 lines (100 loc) · 1.67 KB
/
announcements.css
File metadata and controls
115 lines (100 loc) · 1.67 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.status {
padding: 16px;
text-align: center;
font-family: sans-serif;
}
.status.error {
color: #dc2626;
}
.announcements-bar {
width: 100%;
font-family: sans-serif;
}
.announcements-container {
width: 500px;
border-top-right-radius: 25px;
border-top-left-radius: 25px;
background: #ffffff;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px;
}
.announcements-left {
display: flex;
align-items: center;
gap: 16px;
}
.announcements-icon {
width: 40px;
height: 40px;
color: #000000;
}
.announcements-temp-row {
display: flex;
align-items: flex-start;
gap: 8px;
}
.announcements-temp {
font-size: 3rem;
font-weight: bold;
color: #111827;
}
.unit-toggle {
display: flex;
align-items: flex-start;
gap: 4px;
font-size: 0.875rem;
}
.unit-button {
background: none;
border: none;
padding: 2px;
cursor: pointer;
color: #4b5563;
}
.unit-button.selected {
text-decoration: underline;
color: #111827;
}
.separator {
color: #9ca3af;
}
.stats {
margin-top: 4px;
font-size: 0.75rem;
color: #4b5563;
display: flex;
flex-direction: column;
gap: 2px;
}
.announcements-right {
text-align: right;
}
.weather-title {
font-size: 1.125rem;
font-weight: 600;
color: #111827;
}
.weather-time {
font-size: 0.875rem;
color: #6b7280;
}
.weather-desc {
margin-top: 4px;
font-size: 0.875rem;
color: #6b7280;
text-transform: capitalize;
}
.meditation-banner {
background: #ecfdf5;
color: #047857;
padding: 16px;
text-align: center;
font-weight: bold;
width: 500px;
border-bottom-right-radius: 25px;
border-bottom-left-radius: 25px;
margin: 0 auto;
}