mirror of
https://github.com/kevin-DL/example.git
synced 2026-01-11 09:44:29 +00:00
21 lines
233 B
CSS
21 lines
233 B
CSS
body {
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
p {
|
|
padding: 0;
|
|
}
|
|
|
|
.title {
|
|
font-size: 3rem;
|
|
color: chartreuse;
|
|
font-style: oblique;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.title:hover {
|
|
font-weight: bold;
|
|
text-decoration: underline;
|
|
}
|