frontend/src/stylesheets/style.css

84 lines
1.3 KiB
CSS
Raw Normal View History

/* globals */
* {
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');
}
.arabic-text {
font-family: "Fedra Arabic", serif;
}
.english-text {
font-family: interstate, serif;
}
/* variables */
:root {
--858-light-gray-color: #ebebeb;
}
/* header */
header {
padding-top: 1em;
}
.site-logo {
2018-12-05 01:05:19 +02:00
max-width: 300px;
text-align: center;
}
.counter {
position: absolute;
right: 0;
top: 0;
padding: 2em;
2018-12-05 01:05:19 +02:00
}
/* search */
.search-button {
background: white;
}
.search-button img {
max-width: 50px;
}
.search-box {
padding: 1em;
background: var(--858-light-gray-color);
}
.search-box::placeholder {
color: black;
}
.video-thumbnail{
max-width: 300px;
}