homepage.js/public/static/ui/resume.css

48 lines
1.1 KiB
CSS
Raw Normal View History

2023-03-09 14:40:29 +01:00
div#resume_js_app {
2023-03-11 10:51:41 +01:00
background: #212121;
2023-03-16 05:07:49 +01:00
width:1000px;
height:800px;
2023-03-09 14:40:29 +01:00
border: 1px solid #e1e1e1;
2023-03-11 10:51:41 +01:00
border-radius: 6px;
2023-03-09 14:40:29 +01:00
font-family: monospace;
2023-03-11 10:51:41 +01:00
box-shadow: 0 2px 1px #303030A0;
2023-03-10 13:00:52 +01:00
color: #e1e1e1 !important;
2023-03-15 15:40:02 +01:00
padding: 8px 2px;
2023-03-11 10:51:41 +01:00
transition: 150ms ease;
}
div#resume_js_app:hover {
box-shadow: 0 2px 3px #303030;
2023-03-09 14:40:29 +01:00
}
div#resume_js_app p.js_loading_indicator {
2023-03-09 16:50:22 +01:00
padding: 0; margin: 0;
2023-03-09 14:40:29 +01:00
position: relative;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: fit-content;
text-align: center;
2023-03-10 13:00:52 +01:00
}
2023-03-10 13:00:52 +01:00
div#resume_js_app * {
color: #e1e1e1;
font-family: 'Source Code Pro', monospace !important;
}
div#resume_js_app a, div#resume_js_app a:visited {
color: rgb(36, 85, 126) !important;
text-decoration: none;
font-weight: 500;
transition: 150ms ease;
text-shadow: 0 0 0px #24557e30;
}
div#resume_js_app a:hover {
text-shadow: 0 0 4px #24557e30;
2023-03-11 10:51:41 +01:00
}
div#resume_js_app table * {
border:0;
text-align: left;
2023-03-19 23:42:11 +01:00
}
.debug_warning {
opacity: 0.8 !important;
/* transform: translate(-50%, 80%) !important; */
2023-03-09 14:40:29 +01:00
}