leilukin-site/index.css

55 lines
871 B
CSS
Raw Normal View History

2023-06-15 09:18:46 +00:00
body {
font-size: 16px;
font-family: 'Source Sans Pro', Arial, sans-serif;
color: #FFFFFF;
background: #000000;
text-align: center;
align-items: center;
line-height: 1.6;
}
a {
color: #6EAEFA;
}
a:visited { color: #6EAEFA; }
main {
background: #000000;
max-width: 900px;
position: relative;
margin: 0 auto;
}
h1 {
font-size: 4rem;
color: #BA6FE8;
font-weight: normal;
letter-spacing:5px;
margin-top: 0.5em;
margin-bottom: 0em;
}
p {
font-size: 1.5rem;
}
.indexBtn {
font: 2rem 'Source Sans Pro', Arial, sans-serif;
font-weight: 600;
border: none;
border-radius: 10px;
padding: 15px 20px;
margin: 0.25em 0.15em;
background-color: #7A37A3;
color: white;
cursor: pointer;
text-transform: uppercase;
}
.indexBtn:hover {
cursor: pointer;
color: white;
background-color: #BA6FE8;
transition: 0.5s;
}