154 lines
2.4 KiB
CSS
154 lines
2.4 KiB
CSS
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
font-family: sans-serif;
|
|
margin: auto;
|
|
max-width: 1280px;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
#navbar {
|
|
background-color: #fff !important;
|
|
border-radius: 2px;
|
|
position: sticky;
|
|
top: 0px;
|
|
width: 100%;
|
|
display: block;
|
|
max-width: none;
|
|
text-align: center;
|
|
|
|
* {
|
|
}
|
|
|
|
a {
|
|
/* color: #000; */
|
|
color: blue;
|
|
display: inline-block;
|
|
font-size: 15px;
|
|
padding: 10px 10px 10px 0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
.resume {
|
|
white-space: pre-line;
|
|
border: 1px solid #aaf;
|
|
border-radius: 0;
|
|
padding: 0px;
|
|
line-height: 1.8em;
|
|
background: #f2f2ff;
|
|
padding: 15px 10px 20px 20px;
|
|
}
|
|
|
|
.code-toolbar + .code-toolbar {
|
|
margin-top: -30px !important;
|
|
}
|
|
|
|
.exemple,
|
|
.code-content {
|
|
/* border: 1px solid #e8cf8b; */
|
|
border-radius: 0 0 3px 3px;
|
|
padding: 8px 16px 12px;
|
|
margin-top: -16px;
|
|
background: #fff;
|
|
/* margin-bottom: 10px; */
|
|
float: none;
|
|
}
|
|
|
|
.code-content::after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
}
|
|
|
|
.code-toolbar {
|
|
border: 1px solid #e8cf8b;
|
|
margin-bottom: 50px;
|
|
}
|
|
pre[class*="language-"] {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
pre[class*="language-"] {
|
|
margin-top: 0 !important;
|
|
padding-bottom: 30px !important;
|
|
}
|
|
.exemple {
|
|
padding-top: 22px;
|
|
}
|
|
pre.language-css {
|
|
background: #f5fde3 !important;
|
|
}
|
|
|
|
|
|
codescaped {
|
|
background-color: #fdf6e3;
|
|
border-radius: 0 0 3px 3px;
|
|
padding: 3px;
|
|
color: #000 !important;
|
|
}
|
|
.file {
|
|
background: #e3eafd;
|
|
font-style: normal;
|
|
text-decoration: none;
|
|
color: #000 !important;
|
|
padding: 0 7px;
|
|
}
|
|
|
|
code:not([class]) {
|
|
font-size: 1.3em;
|
|
color: #000;
|
|
background: #fdf6e3;
|
|
padding: 0 5px;
|
|
}
|
|
:is(.code-toolbar) + :not(.exemple) {
|
|
margin-top: 1rem;
|
|
}
|
|
:is(.exemple, .code-content) p {
|
|
color: #000;
|
|
}
|
|
|
|
div.code-toolbar > .toolbar {
|
|
opacity: 1 !important;
|
|
}
|
|
.toolbar-item:first-child span {
|
|
border-radius: 0 !important;
|
|
background: #FFF !important;
|
|
box-shadow: none !important;
|
|
left: -10px !important;
|
|
position: relative !important;
|
|
}
|
|
|
|
.language-markup {
|
|
word-wrap: anywhere !important;
|
|
white-space: break-spaces !important;
|
|
}
|
|
|
|
code.key {
|
|
background: gray;
|
|
color: #fff !important;
|
|
font-size: 1.3em;
|
|
font-weight: bold;
|
|
padding: 3px 13px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
hr.space {
|
|
height: 2rem;
|
|
border: 0;
|
|
}
|
|
hr.visible {
|
|
background-color: #000;
|
|
height: 10px;
|
|
margin: 3rem 0;
|
|
}
|