style.css (3971B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap');
@import url('https://pro.fontawesome.com/releases/v5.15.0/css/all.css');
:root {
--fa: "Font Awesome 5 Pro", "Font Awesome 5 Brands";
--monospace: monospace, var(--fa);
--serif: 'Lora', serif, var(--fa);
}
::selection {
background: pink; /* WebKit/Blink Browsers */
color: white;
}
::-moz-selection {
background: pink; /* Gecko Browsers */
color: white;
}
/*
ol > ::marker {
content: "\2116" counter(list-item) ". ";
font-variant-numeric: oldstyle-nums;
}
*/
ol > ::marker {
content: counter(list-item, cjk-ideographic) "\ff0e";
}
html, body {
padding: 0;
margin: 0;
min-height: 100%;
}
body {
color: black;
background: #baddff;
background-image: url('background-300x300.png');
background-size: 10em;
background-repeat: repeat;
font-family: var(--serif);
background-attachment: fixed;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
hr {
background: none;
border: none;
border-top: 2pt dashed #8dacca52;
}
img.emoji, img.emojione, img.gemoji {
display: inline;
padding: 0;
margin: 0;
height: 1.3em;
vertical-align: top;
border: none;
filter: none;
}
code {
background: #00000012;
border: 1px solid #00000029;
border-radius: 2pt;
padding: 0 2pt;
}
pre { width: 100%; }
pre code {
padding: 1em;
display: block;
}
#content > a:first-child {
text-decoration: none;
}
.titleBar {
background-color: #679dd74d;
border-radius: 5pt;
box-shadow: 0 4pt 22pt #0000003b;
border: 1pt solid #87b1dd;
margin-left: 5em;
margin-right: 5em;
margin-bottom: 2em;
text-align: center;
padding-top: 0.75em;
padding-bottom: 0.90em;
display: block;
}
.titleButton {
text-decoration: none;
background-color: #acb9f8;
display: inline-block;
margin: 0.3em 0.3em;
padding: 0.12em 0.3em;
box-shadow: 0.3em 0.3em 0 #00000030;
transition: 0.3s;
font-size: 20pt;
width: 12.5%;
font-weight: bold;
font-variant: small-caps;
}
.titleButton:hover {
box-shadow: 0.4em 0.4em 3pt #00000030;
}
.titleButton a {
text-decoration: inherit;
}
.image-card {
width: 100%;
margin-top:2em;
box-shadow: 0pt 5pt 20pt #0006;
border: 1pt solid #eee;
border-radius: 7pt;
}
#content {
/* background-color: #f7d4ff80; */
padding: 1em;
min-height: calc(100vh - 2em);
padding-bottom: 20em;
}
.guitarCentre {
overflow: auto;
}
.guitarAudio {
display: block;
text-align: center;
margin-bottom: 2em;
}
.guitarPicture {
width:30em;
float: right;
margin-left: 2em;
border: 2pt solid #0006;
border-radius: 7pt;
}
.audio {
margin-top: 2em;
}
#mascot {
height: 20em;
position: fixed;
bottom:0em;
right:0;
opacity: .85;
}
@media only screen and (max-width: 724px) {
.guitarText {
font-family: var(--serif);
padding-right: 1em;
padding-left: 1em;
}
.guitarPicture {
display: block;
margin-left: auto;
margin-right: auto;
padding-left: 0em;
float: none;
max-width: calc(100% - 4pt);
}
.titleButton {
width: 50%
}
.pdf {
height: 300pt;
}
.comment-input {
height: 5em;
margin: 0em 0em;
}
.input {
width: calc(100% - 1.2em)
}
#mascot {
height: 10em;
}
#content {
padding-bottom: 10em;
}
}
h1 {
color: black;
text-align: center;
font-variant: small-caps;
}
li {
font-size: large;
}
a {
text-decoration: underline;
color: inherit;
}
p {
font-size: large;
}
|