39 lines
439 B
CSS
39 lines
439 B
CSS
|
|
#cv {
|
|
/*
|
|
place-items: center;
|
|
place-self: stretch;
|
|
*/
|
|
grid-template-columns: 1fr minmax(auto, 900px) 1fr;
|
|
}
|
|
#cv header {
|
|
height: 300px;
|
|
}
|
|
#cv article {
|
|
/*
|
|
max-width: 900px;
|
|
*/
|
|
}
|
|
#cv article h2 {
|
|
text-align: center;
|
|
}
|
|
#cv #cv_ascii {
|
|
/*
|
|
place-self: center;
|
|
*/
|
|
}
|
|
#cv #cv_download {
|
|
/*
|
|
place-self: center;
|
|
*/
|
|
}
|
|
#cv details {
|
|
margin: 0px 0px 0px 25px;
|
|
}
|
|
#cv summary {
|
|
padding: 10px 0px;
|
|
}
|
|
#cv .mouse {
|
|
margin-top: 150px;
|
|
}
|