-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
126 lines (109 loc) · 2.3 KB
/
styles.css
File metadata and controls
126 lines (109 loc) · 2.3 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
116
117
118
119
120
121
122
123
124
125
126
:root {
--primary-color: rgb(192, 194, 195);
--secondary-color: #34495e;
--background-color: rgba(236, 240, 241, 0.9);
--text-color: #333;
--button-color: green;
--button-hover-color: #27ae60;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-image: url('https://i.redd.it/lz9vwb6i5kf41.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
line-height: 1.6;
padding: 1rem;
background-color: rgba(0,0,0,0.5);
background-blend-mode: overlay;
}
.container {
background-color: rgba(255, 255, 255, 0.137);
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
padding: 2rem;
width: 100%;
max-width: 600px;
text-align: center;
backdrop-filter: blur(5px);
}
h1 {
color: var(--primary-color);
margin-bottom: 1.5rem;
font-size: 2rem;
}
#verse-btn {
background-color: var(--button-color);
color: white;
border: none;
padding: 12px 24px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
margin-bottom: 1.5rem;
font-size: 1rem;
}
#verse-btn:hover {
background-color: var(--button-hover-color);
transform: scale(1.05);
}
.verse-container {
background-color: rgba(52, 73, 94, 0.8);
color: white;
padding: 1.5rem;
border-radius: 10px;
min-height: 250px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
opacity: 0;
animation: fadeIn 0.5s ease-out forwards;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
#verse-text {
font-size: 1.2rem;
margin-bottom: 1rem;
direction: rtl;
}
.translation {
font-style: italic;
margin-top: 0.5rem;
opacity: 0.9;
font-size: 1rem;
}
.verse-info {
margin-top: 1rem;
font-size: 0.9rem;
opacity: 0.8;
}
@media (max-width: 600px) {
.container {
margin: 1rem;
padding: 1rem;
}
h1 {
font-size: 1.5rem;
}
#verse-text, .translation {
font-size: 1rem;
}
}