-
Notifications
You must be signed in to change notification settings - Fork 0
/
Night1.css
29 lines (29 loc) · 999 Bytes
/
Night1.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
29
/* This CSS is used in the homepage for the RandomCSS repo
https://leia286.github.io/CSS-Home.html
The homepage is dependent on Bootstrap CSS for the nav bar and 90% of the rest of the code
(don't quote me on that number, I didn't do the math), but here's the rest of the code, that's not Bootstrap.
Please install these Google Fonts before use
- Roboto
- Source Code Pro
The latter is only need if you are using the <code> tag, or the .mono class.
*/
body{background-color:black;
color:white;
font-family:sans-serif;}
.body{
text-align:left;
padding:5%;
}
.center{
text-align:center;
}
code{font-family: 'Source Code Pro', monospace; color:white; background-color: rgb(92, 91, 88);}
h1,small{font-family: 'Roboto', sans-serif;}
/*Just incase you need monospace and not a code tag*/
.mono{
font-family: 'Source Code Pro', monospace;
}
/*.serif class*/
.serif{
font-family:serif;
}