24 lines
533 B
CSS
24 lines
533 B
CSS
|
div#resume_js_app {
|
||
|
background: #303030;
|
||
|
width:640px;
|
||
|
height:480px;
|
||
|
border: 1px solid #e1e1e1;
|
||
|
font-family: monospace;
|
||
|
box-shadow: 0 2px 4px #30303060;
|
||
|
padding: 10px 8px;
|
||
|
color: #e1e1e1;
|
||
|
|
||
|
position: fixed;
|
||
|
top:50%;left:50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
}
|
||
|
div#resume_js_app * {
|
||
|
padding: 0; margin: 0;
|
||
|
}
|
||
|
div#resume_js_app p.js_loading_indicator {
|
||
|
position: relative;
|
||
|
top: 50%; left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
width: fit-content;
|
||
|
text-align: center;
|
||
|
}
|