mirror of
https://github.com/EthanPisani/ethanpisani.com.git
synced 2025-07-02 18:15:18 -04:00
60 lines
965 B
CSS
60 lines
965 B
CSS
body {
|
|
font-size: 1em;
|
|
background-color: #2c2c2c;
|
|
font-family: "Roboto", sans-serif;
|
|
margin: auto;
|
|
/* margin-top: 30vh;*/
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
::-webkit-scrollbar {
|
|
background-color: #202324;
|
|
color: #aba499;
|
|
}
|
|
::-webkit-scrollbar-corner {
|
|
background-color: #181a1b;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #535353;
|
|
}
|
|
p.links {
|
|
color: #229100;
|
|
}
|
|
button {
|
|
background-color: #229100;
|
|
border: none;
|
|
border-radius: 0.5em;
|
|
color: white;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
border-radius: 0.5em;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.wrapper {
|
|
border-radius: 2em;
|
|
padding: 2em;
|
|
width: 30%;
|
|
margin-bottom: 2em;
|
|
margin: auto;
|
|
margin-top:0;
|
|
overflow: hidden; /* add this to contain floated children */
|
|
}
|
|
.first {
|
|
width: 50%;
|
|
|
|
float: left; /* add this */
|
|
}
|
|
.second {
|
|
width: 50%;
|
|
|
|
float: right; /* add this */
|
|
}
|