mirror of
https://github.com/LJ5O/website.git
synced 2026-08-11 22:54:46 +02:00
37 lines
489 B
CSS
37 lines
489 B
CSS
@import './base.css';
|
|
|
|
h1,h2,h3,h4,h5,p{
|
|
color: #EAEAEA;
|
|
/*Family Roboto or Atma ?*/
|
|
}
|
|
|
|
a{
|
|
text-decoration: none;
|
|
color: #6495ed;
|
|
}
|
|
a:visited{
|
|
color: #6495ed;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.test{
|
|
border: red dotted 2px;
|
|
}
|
|
|
|
.button{
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
}
|
|
|
|
#app{
|
|
height: 100%;
|
|
margin: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
} |