2018-12-05 23:56:22 +02:00
|
|
|
/* globals */
|
2018-12-05 23:51:53 +02:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0px;
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fonts */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Fedra Arabic';
|
|
|
|
src: url('../assets/fonts/Fedra Arabic Reg_beta.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'bebas';
|
|
|
|
src: url('../assets/fonts/BEBAS___.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'majalla';
|
|
|
|
src: url('../assets/fonts/majalla 2.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'MyriadPro Regular';
|
|
|
|
src: url('../assets/fonts/MyriadPro-Regular.otf') format('otf');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'interstate';
|
|
|
|
src: url('../assets/fonts/Interstate-Regular.bmap') format('bmap'),
|
|
|
|
url('../assets/fonts/Interstate-Bold.bmap') format('bmap');
|
|
|
|
}
|
|
|
|
|
2018-12-05 23:56:22 +02:00
|
|
|
.arabic-text {
|
|
|
|
font-family: "Fedra Arabic", serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.english-text {
|
|
|
|
font-family: interstate, serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* variables */
|
|
|
|
:root {
|
|
|
|
--858-light-gray-color: #ebebeb;
|
|
|
|
}
|
|
|
|
|
2018-12-05 23:51:53 +02:00
|
|
|
/* header */
|
|
|
|
header {
|
|
|
|
padding-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-logo {
|
2018-12-05 01:05:19 +02:00
|
|
|
max-width: 300px;
|
2018-12-05 23:51:53 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.counter {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
padding: 2em;
|
2018-12-05 01:05:19 +02:00
|
|
|
}
|
2018-12-06 00:34:48 +02:00
|
|
|
|
2018-12-06 00:02:33 +02:00
|
|
|
/* search */
|
2018-12-06 00:34:48 +02:00
|
|
|
.search-button {
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-button img {
|
|
|
|
max-width: 50px;
|
|
|
|
}
|
2018-12-06 00:02:33 +02:00
|
|
|
|
2018-12-06 00:34:48 +02:00
|
|
|
.search-box {
|
|
|
|
padding: 1em;
|
|
|
|
background: var(--858-light-gray-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-box::placeholder {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
.video-thumbnail{
|
|
|
|
max-width: 300px;
|
|
|
|
}
|