2023-02-27 23:28:37 +01:00
|
|
|
$black: #454545;
|
2023-10-24 07:19:37 +02:00
|
|
|
$max-width: 856px;
|
2023-02-27 23:28:37 +01:00
|
|
|
|
2023-10-22 02:17:41 +02:00
|
|
|
html[lang="en"] {
|
2023-03-02 05:30:46 +01:00
|
|
|
font-family: "Kanit Regular";
|
|
|
|
}
|
|
|
|
|
2023-10-22 02:17:41 +02:00
|
|
|
html[lang="ar"] {
|
|
|
|
font-family: "Amiri Quran Regular";
|
2023-10-13 21:05:46 +02:00
|
|
|
}
|
|
|
|
|
2023-02-27 23:28:37 +01:00
|
|
|
html {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
html body {
|
|
|
|
color: $black;
|
|
|
|
height: 85%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .root {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body .root .content {
|
|
|
|
margin: 0 auto;
|
2023-10-20 22:39:09 +02:00
|
|
|
width: 80%;
|
|
|
|
max-width: $max-width;
|
2023-10-21 22:47:46 +02:00
|
|
|
height: 90%;
|
2023-02-27 23:28:37 +01:00
|
|
|
|
2023-03-10 16:03:29 +01:00
|
|
|
@media screen and (max-width: $max-width) {
|
2023-02-27 23:28:37 +01:00
|
|
|
width: 350px;
|
|
|
|
}
|
|
|
|
|
2023-10-25 08:11:54 +02:00
|
|
|
h1 {
|
2023-10-22 02:17:41 +02:00
|
|
|
display: flex;
|
2023-10-25 08:11:54 +02:00
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
font-size: xx-large;
|
|
|
|
|
|
|
|
a {
|
|
|
|
line-height: 38px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2023-10-22 02:17:41 +02:00
|
|
|
}
|
2023-02-27 23:28:37 +01:00
|
|
|
|
2023-10-22 02:17:41 +02:00
|
|
|
ul.body {
|
|
|
|
clear: both;
|
|
|
|
list-style-type: none;
|
|
|
|
height: 90%;
|
|
|
|
padding: 0;
|
2023-03-02 05:30:46 +01:00
|
|
|
|
2023-10-22 02:17:41 +02:00
|
|
|
/* Height of 625px, or less */
|
|
|
|
@media screen and (max-height: 625px) {
|
|
|
|
height: 330px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Height of 595px, or less */
|
|
|
|
@media screen and (max-height: 595px) {
|
|
|
|
height: 310px;
|
|
|
|
}
|
2023-10-21 22:47:46 +02:00
|
|
|
}
|
|
|
|
|
2023-10-22 02:17:41 +02:00
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
direction: ltr;
|
2023-03-02 05:30:46 +01:00
|
|
|
}
|
|
|
|
|
2023-10-22 02:17:41 +02:00
|
|
|
.row.dropdown-row {
|
|
|
|
.react-select.theme {
|
|
|
|
width: 35px;
|
|
|
|
}
|
2023-03-02 05:30:46 +01:00
|
|
|
|
2023-10-22 02:17:41 +02:00
|
|
|
.react-select.language {
|
|
|
|
width: 70px;
|
|
|
|
text-align: right;
|
|
|
|
li { font-family: "Kanit Regular"; }
|
|
|
|
}
|
2023-03-02 05:30:46 +01:00
|
|
|
}
|
2023-10-22 02:17:41 +02:00
|
|
|
}
|
2023-03-02 05:30:46 +01:00
|
|
|
|
2023-10-22 02:17:41 +02:00
|
|
|
body .root .content.ar {
|
|
|
|
a.title {
|
|
|
|
font-size: xx-large;
|
2023-03-02 05:30:46 +01:00
|
|
|
}
|
|
|
|
}
|
2023-10-23 19:46:09 +02:00
|
|
|
|
|
|
|
.invisible {
|
|
|
|
display: none !important;
|
|
|
|
}
|