-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
132 lines (131 loc) · 2.38 KB
/
style.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
padding: 2em;
height: 100vh;
font-family: "Cairo", sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.bg-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: url("images/ramadan.png");
background-position: center;
filter: blur(40px);
}
.card {
position: relative;
background: white;
padding: 2em;
width: 100%;
height: 100%;
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
border-radius: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
}
.card-img {
position: absolute;
bottom: -10%;
left: -5%;
max-width: 800px;
}
.nav-bar {
z-index: 2;
display: flex;
justify-content: space-between;
align-items: center;
padding: 5px 10px;
margin-bottom: 15px;
}
.nav-bar .logo a {
text-decoration: none;
font-size: 2em;
color: #fd7e14;
margin-left: 2em;
}
.nav-bar ul.menu {
list-style: none;
color: #4285f4;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-bar ul.menu li.menu-item {
font-size: 1.2em;
margin-right: 20px;
border-radius: 50px;
}
.nav-bar ul.menu li.menu-item a {
display: block;
text-decoration: none;
color: #4285f4;
padding: 5px 20px;
border-radius: 50px;
}
.nav-bar ul.menu li.menu-item.active {
background: #4285f4;
}
.nav-bar ul.menu li.menu-item.active a {
color: white;
}
.nav-bar ul.menu li.menu-item a:hover {
background: #4285f4;
color: white !important;
}
ul.prayers-list {
z-index: 2;
align-self: flex-end;
text-decoration: none;
list-style: none;
display: flex;
width: 50%;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
ul.prayers-list li {
display: flex;
width: 100%;
padding-top: 0.5em;
padding-bottom: 0.5em;
justify-content: space-evenly;
align-items: center;
background-color: #082233;
color: white;
border-radius: 20px;
margin-bottom: 15px;
}
ul.prayers-list li i {
font-size: 1.2em;
background-color: #fd7e14;
border-radius: 10px;
padding: 10px;
margin-bottom: 5px;
color: white;
}
.prayer-text {
font-size: 1.2em;
}
.time {
font-size: 2em;
}
ul.prayers-list li.location {
justify-content: center;
}
ul.prayers-list li.location i {
margin-right: 10px;
}