-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimesstyle.css
More file actions
78 lines (68 loc) · 1.5 KB
/
timesstyle.css
File metadata and controls
78 lines (68 loc) · 1.5 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
@import url(https://fonts.googleapis.com/earlyaccess/amiri.css);
body {
font-family: "Cairo", sans-serif;
background-color: #f8f3eb;
color: #4c3b28;
margin: 0;
padding: 0;
text-align: center;
padding: 20px;
}
h1 {
font-size: 2rem;
margin-bottom: 10px;
margin-top: 50px;
}
.location {
font-size: 1rem;
color: #a58d6f;
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
margin-bottom: 30px;
}
.prayer-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
background-color: #f3e6d8;
padding: 20px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
margin: 0 auto;
max-width: 800px;
}
.prayer-card {
width: 120px;
padding: 15px;
text-align: center;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
font-size: 1rem;
transition: transform 0.3s ease;
}
.prayer-card:hover {
transform: translateY(-5px);
}
.prayer-icon {
font-size: 2.5rem;
color: #a58d6f;
margin-bottom: 10px;
}
.prayer-name {
font-weight: bold;
margin-bottom: 5px;
font-size: 1.1rem;
}
.prayer-time {
color: #4c3b28;
font-size: 1rem;
}
.loading {
font-size: 1.2rem;
color: #a58d6f;
margin-top: 20px;
}