-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathathkar.css
More file actions
110 lines (95 loc) · 1.95 KB
/
athkar.css
File metadata and controls
110 lines (95 loc) · 1.95 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
@import url(https://fonts.googleapis.com/earlyaccess/amiri.css);
body {
font-family: 'Amiri', serif;
background-color: #E2E6E7;
/* Pewter */
color: #201A1E;
/* Black */
text-align: center;
padding: 20px;
margin: 0;
direction: rtl;
}
/* Section Padding */
section {
padding: 20px 0;
background-color: #E4D4C8;
/* Ensure sections have the same background */
}
/* Body Direction Overwrite */
body {
font-family: 'Amiri', serif;
background-color: #E2E6E7;
/* Pewter */
color: #201A1E;
/* Black */
text-align: center;
padding: 20px;
margin: 0;
direction: rtl;
/* Body remains RTL */
}
header {
background-color: #D0B49F;
/* Brown */
color: #201A1E;
/* Black */
padding: 15px;
border-radius: 8px;
margin-bottom: 20px;
}
h1,
h2 {
margin: 10px 0;
}
h1 {
font-size: 28px;
}
h2 {
font-size: 22px;
color: #201A1E;
/* Black */
}
section {
margin: 20px auto;
padding: 20px;
background-color: #E4D4C8;
/* Champagne */
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-width: 1000px;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin: 20px 0;
}
.card {
background-color: #F9F5F0; /* Light Beige */
border: 1px solid #D0B49F; /* Light Brown */
border-radius: 8px;
padding: 15px;
position: relative;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
font-size: 1.2rem;
line-height: 1.6;
text-align: right;
}
.copy-btn {
position: absolute;
bottom: 10px;
left: 10px;
background-color: #201A1E; /* Dark Background */
color: #F9F5F0; /* Light Text */
border: none;
padding: 8px 15px;
border-radius: 5px;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s ease;
}
.copy-btn:hover {
background-color: #D0B49F; /* Light Brown */
color: #201A1E; /* Dark Text */
}