mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
22 lines
221 B
CSS
22 lines
221 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: arial, sans-serif;
|
|
}
|
|
|
|
main {
|
|
margin: 0 100px;
|
|
}
|
|
|
|
h1 {
|
|
padding: 50px;
|
|
}
|
|
|
|
h2 {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.dark-mode-theme {
|
|
background-color: #1c1c1e;
|
|
color: #fefefe;
|
|
} |