2019-05-20 09:17:39 +00:00
|
|
|
:root {
|
|
|
|
--bg-color: rgb(10, 10, 10);
|
|
|
|
--text-color: #fff;
|
|
|
|
--blog-gray-color: rgb(180, 180, 180);
|
2019-08-13 09:54:14 +00:00
|
|
|
--background-image: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
rgba(10, 10, 10, 0.3),
|
|
|
|
rgb(10, 10, 10, 1)
|
|
|
|
),
|
|
|
|
url("{{{background}}}");
|
|
|
|
--background-background: linear-gradient(
|
|
|
|
0deg,
|
|
|
|
rgba(10, 10, 10, 1),
|
|
|
|
rgba(10, 10, 10, 0.6)
|
|
|
|
),
|
|
|
|
url("{{{background}}}") center center fixed;
|
2019-05-20 09:17:39 +00:00
|
|
|
--height: 50vh;
|
|
|
|
}
|
2019-08-12 04:10:00 +00:00
|
|
|
|
2019-05-20 09:17:39 +00:00
|
|
|
#display h1 {
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
background-clip: text;
|
|
|
|
-webkit-text-fill-color: #fff;
|
|
|
|
}
|
2019-08-12 04:10:00 +00:00
|
|
|
|
2019-05-20 09:17:39 +00:00
|
|
|
#blog-display h1 {
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
background-clip: text;
|
|
|
|
-webkit-text-fill-color: #fff;
|
|
|
|
}
|
2019-08-12 04:10:00 +00:00
|
|
|
|
2019-05-20 09:22:19 +00:00
|
|
|
.projects section {
|
2019-05-20 09:17:39 +00:00
|
|
|
background: rgb(20, 20, 20);
|
|
|
|
}
|
2019-08-12 04:10:00 +00:00
|
|
|
|
2019-05-20 09:17:39 +00:00
|
|
|
#blog_section section {
|
|
|
|
background: rgb(20, 20, 20);
|
|
|
|
}
|
2019-08-12 04:10:00 +00:00
|
|
|
|
2019-05-20 09:17:39 +00:00
|
|
|
@media (max-width: 800px) {
|
|
|
|
:root {
|
2019-08-13 09:54:14 +00:00
|
|
|
--background-image: linear-gradient(
|
|
|
|
0deg,
|
|
|
|
rgba(10, 10, 10, 1),
|
|
|
|
rgba(10, 10, 10, 0)
|
|
|
|
),
|
|
|
|
url("{{{background}}}") !important;
|
2019-05-20 09:17:39 +00:00
|
|
|
}
|
2019-08-13 09:54:14 +00:00
|
|
|
}
|