-
Notifications
You must be signed in to change notification settings - Fork 10
/
my_style.css
28 lines (22 loc) · 918 Bytes
/
my_style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.landing {
background-image: url('../assets/images/mnt_gl-light.jpg');
background-repeat: no-repeat;
background-position: top;
/*background-size: 100% clamp(18vw, 365px, 40vw);*/
background-size: 100% clamp(15vw, 250px, 22vw);
}
.colorscheme-dark .landing {
background-image: url('../assets/images/mnt_gl.jpg');
background-repeat: no-repeat;
background-position: top;
/*background-size: 100% clamp(18vw, 365px, 40vw);*/
background-size: 100% clamp(15vw, 250px, 22vw);
}
/*.hljs {background: red;}*/
.colorscheme-dark .hljs {background: #383e42;}
/*.colorscheme-dark .centered .about h1 {color: rgb(250, 250, 250); }
.centered .about h1 {color: rgb(170, 170, 170); }
.colorscheme-dark .centered .about h2 {color: rgb(250, 250, 250); }
.centered .about h2 {color: rgb(170, 170, 170); }
.colorscheme-dark .navigation a {color: rgb(250, 250, 250); }
.navigation a {color: rgb(170, 170, 170); }*/