mirror of
https://github.com/LBRYFoundation/lbryorg.git
synced 2025-08-31 17:31:29 +00:00
52 lines
No EOL
769 B
CSS
52 lines
No EOL
769 B
CSS
/* Fonts */
|
|
@font-face {
|
|
font-family: 'Oxygen';
|
|
src: url(../fonts/Oxygen/Oxygen-Regular.ttf) truetype;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Oxygen, Bold';
|
|
src: url(../fonts/Oxygen/Oxygen-Bold.ttf) truetype;
|
|
}
|
|
/* /Fonts */
|
|
|
|
body {
|
|
font-family: Oxygen;
|
|
}
|
|
|
|
/* Parallax */
|
|
.parallax .parallax-img {
|
|
z-index: -1;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.parallax .parallax-content {
|
|
z-index: 100;
|
|
position: relative;
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.parallax .parallax-bg {
|
|
z-index: -2;
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.parallax {
|
|
overflow: hidden;
|
|
}
|
|
/* /Parallax */
|
|
|
|
#global-parallax .parallax-img {
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
#global-parallax {
|
|
/* width: 100%; */
|
|
margin: 0;
|
|
} |