58 lines
902 B
CSS
58 lines
902 B
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 */
|
|
main {
|
|
padding: 4em;
|
|
}
|
|
#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;
|
|
}
|
|
|
|
|
|
/* Mobile :320px. */
|
|
@media (max-width: 767px) {
|
|
main {
|
|
padding: 0em;
|
|
}
|
|
#main-title {
|
|
font-family: 'Satisfy', cursive;
|
|
font-size: 2em;
|
|
color: teal;
|
|
}
|
|
#side-note {
|
|
font-family: 'Baloo Bhaijaan 2', cursive;
|
|
font-size: 1em;
|
|
}
|
|
|
|
p {
|
|
font-family: 'Baloo Bhaijaan 2', cursive;
|
|
font-size: 1.5em;
|
|
}
|
|
} |