76 lines
No EOL
1.3 KiB
CSS
76 lines
No EOL
1.3 KiB
CSS
.Project {
|
|
color: white;
|
|
background-color: #17171f;
|
|
padding: 5px;
|
|
border-radius: 5px;
|
|
border: #2c2c3b 2px solid;
|
|
line-height: 1;
|
|
font-family: 'Manrope';
|
|
margin-bottom: 20px;
|
|
transition: all .2s ease;
|
|
}
|
|
|
|
.Box {
|
|
background-color: #21212c;
|
|
height: 100%;
|
|
position: fixed;
|
|
display: block;
|
|
padding-bottom: 50px;
|
|
transition: all .2s ease;
|
|
}
|
|
|
|
.ScrollBox {
|
|
display: block;
|
|
position: relative;
|
|
overflow-y: scroll;
|
|
height: 100%;
|
|
padding: 50px;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.ProjectHeader {
|
|
padding-left: 50px;
|
|
font-size: 24pt;
|
|
transition: all .2s ease;
|
|
}
|
|
|
|
.ProjectDescription {
|
|
padding-left: 50px;
|
|
font-size: 14pt;
|
|
padding-right: 50px;
|
|
line-height: 1.3;
|
|
transition: all .2s ease;
|
|
}
|
|
|
|
.ButtonBox {
|
|
margin-bottom: 20px;
|
|
margin-left: 50px;
|
|
transition: all .2s ease;
|
|
}
|
|
|
|
.ButtonBox>button {
|
|
cursor: pointer;
|
|
padding: 10px;
|
|
background-color: #739fff;
|
|
border: none;
|
|
border-radius: 10px;
|
|
color: black;
|
|
transition: all .2s ease;
|
|
margin-right: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.ButtonBox>button:hover {
|
|
padding: 10px;
|
|
background-color: white;
|
|
border: none;
|
|
border-radius: 10px;
|
|
color: black;
|
|
}
|
|
|
|
.Header {
|
|
font-family: 'Manrope';
|
|
font-size: 20pt;
|
|
line-height: 1;
|
|
padding-bottom: 10px;
|
|
transition: all .2s ease;
|
|
} |