-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
103 lines (83 loc) · 1.68 KB
/
Copy pathcss.css
File metadata and controls
103 lines (83 loc) · 1.68 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
body {
direction: rtl ;
font-family: "Tajawal", sans-serif;
background: linear-gradient(45deg,rgb(0, 139, 0),rgb(1, 46, 1));
background-repeat: no-repeat;
min-height: 100vh;
}
.container {
margin: 30px;
color: white;
}
h1,h3 {
margin: 0;
}
#city-name {
font-size: 5rem;
font-weight: 400;
}
#data {
font-weight: 300 ;
font-size: 25px;
}
.container > section:first-child {
border-bottom: 0.7px solid rgb(36, 121, 36) ;
padding-bottom: 4px;
}
.prayer-timings {
display: flex;
flex-direction: column;
justify-content: center;
}
.cards {
grid-template-columns: repeat(auto-fill,minmax(170px,1fr));
gap: 20px;
display: grid;
}
.card {
background-color: rgb(255, 255, 255);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.37);
border-radius: 10px;
text-align: center;
height: 200px;
}
.card #prayer-name ,
#prayer-time {
justify-content: center;
align-items: center;
display: flex ;
}
.card #prayer-name {
background-color: rgb(11, 121, 11);
font-size: 18px;
font-weight: 600;
width: 100%;
height: 40px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
#prayer-time {
color: black;
font-size: 45px;
font-weight: 600;
height: calc(100% - 40px);
}
#city-selector ,
option {
font-family: "Tajawal", sans-serif;
color: white;
padding: 5px 8px;
font-size: 18px;
font-weight: 400;
width: 100%;
cursor: pointer;
height: fit-content ;
margin: 20px auto;
background: none;
border-radius: 20px;
border-color: rgb(255, 255, 255);
border-width: 0.4px;
}
option {
background-color: rgba(3, 133, 3, 0.753);
}