adding first touches for simple website

This commit is contained in:
Arjun Patel
2021-12-04 21:50:58 -08:00
parent 896cf2ef74
commit 1ec4eee849
4 changed files with 82 additions and 41 deletions
+42
View File
@@ -14,3 +14,45 @@ a {
* {
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;
}
}