Files
nirvana/styles/globals.css
T
Arjun Patel 9a89f84acd dsdfg
2022-01-10 23:42:16 -08:00

85 lines
1.2 KiB
CSS

html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
/* my personal css */
body {
background: url('/wallpapers/dark-mountains.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
main {
padding: 4em;
}
.font-satisfy {
font-family: 'Satisfy', cursive;
}
.text-teal {
color: teal;
}
#main-title {
font-family: 'Satisfy', cursive;
font-size: 2em;
color: teal;
}
#side-note {
font-family: 'Baloo Bhaijaan 2', cursive;
font-size: 1.5em;
}
p {
font-family: 'Baloo Bhaijaan 2', cursive;
font-size: 2em;
color:white;
}
#marquee-text {
font-style: italic;
font-size: 1.5em;
font-family: 'Baloo Bhaijaan 2', cursive;
}
/* Mobile :320px. */
@media (max-width: 767px) {
main {
padding: 0em;
}
#main-title {
font-size: 2em;
color: teal;
}
#side-note {
font-size: 1em;
}
p {
font-size: 1.5em;
}
#marquee-text {
font-size: 1em;
}
}