-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
76 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,227 +1,114 @@ | ||
/* styles.css in uofm-advstyling - adv-styling.bauska.org */ | ||
|
||
body { | ||
background-color: #eee; /* very light gray */ | ||
font-family: Bahnschrift, Inter, Helvetic, sans-serif, Consolas; | ||
font-size: 15px; /* 1.2rem; */ | ||
margin-right: 10px; | ||
margin-left: 10px; | ||
} | ||
img.displayed { | ||
display: block; | ||
margin: 0 auto; | ||
margin: 0 auto; | ||
} | ||
.border { | ||
border: 2px solid #778899; /* dark grayish blue */ | ||
} | ||
border-width: 1px; | ||
border-color: #778899; /* dark grayish blue */ | ||
border-style: solid; } | ||
|
||
blockquote { | ||
margin: .5em 0 .5em .85em; | ||
padding-left: 1em; | ||
border-left: 2px solid #e6e6e6; /* very light gray */ | ||
color: #606060; /* very dark gray */ | ||
} | ||
font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", | ||
"Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace; | ||
|
||
hr { | ||
ground-color: #1a1a1a; /* very dark gray (mostly black) */ | ||
border: none; | ||
height: 1px; | ||
margin: 1em 0; | ||
} | ||
|
||
table { | ||
margin: 1em 0; | ||
border-collapse: collapse; | ||
width: 100%; | ||
overflow-x: auto; | ||
display: block; | ||
font-variant-numeric: lining-nums tabular-nums; | ||
} | ||
table caption { | ||
margin-bottom: 0.75em; | ||
} | ||
tbody { | ||
margin-top: 0.5em; | ||
border-top: 1px solid #1a1a1a; /* very dark gray (mostly black) */ | ||
border-bottom: 1px solid #1a1a1a; /* very dark gray (mostly black) */ | ||
} | ||
th { | ||
border-top: 1px solid #1a1a1a; /* very dark gray (mostly black) */ | ||
padding: 0.25em 0.5em 0.25em 0.5em; | ||
} | ||
td { | ||
padding: 0.125em 0.5em 0.25em 0.5em; | ||
} | ||
|
||
#myBtn { | ||
display: none; | ||
position: fixed; | ||
bottom: 20px; | ||
right: 30px; | ||
z-index: 99; | ||
font-size: 11px; | ||
border: none; | ||
outline: none; | ||
background-color: #8b0000; /* dark red */ | ||
color: #fdfeff; /* Very pale (mostly white) blue */ | ||
cursor: pointer; | ||
padding: 10px; | ||
border-radius: 1px; | ||
} | ||
#myBtn:hover { | ||
background-color: #555555; /* very dark gray */ | ||
} | ||
p { font-size: 15px; | ||
font-family: Bahnschrift, Inter, Helvetic, sans-serif; | ||
text-align: left; | ||
margin-left: 5px; } | ||
|
||
pre { | ||
overflow: auto; | ||
font-family: Consolas, monospace, monospace; | ||
font-size: 10px; | ||
margin-left: 10px; | ||
} | ||
pre > code { | ||
display: block; | ||
margin-left: 10px; | ||
padding: 1rem; | ||
word-wrap: normal; | ||
} | ||
pre, code { | ||
font-family: monospace, monospace; | ||
font-size: 10px; | ||
margin-left: 15px; | ||
} | ||
pre:hover, pre:focus { width: min-content; } | ||
background: linear-gradient(60deg, #3d3393 0%, #2b76b9 37%, #2cacd1 65%, #35eb93 100%); | ||
|
||
a.hover { | ||
color: #000000; /* white */ | ||
background-color: #ffff00 /* yellow */ | ||
text-decoration: underline; | ||
} | ||
a.hover:hover { | ||
background-color: #ffff00; /* pure (or mostly pure) yellow */ | ||
text-decoration: underline; | ||
} | ||
a:link { | ||
color: #013220; /* very dark green */ | ||
background-color: transparent; | ||
text-decoration: none; | ||
} | ||
a:visited { | ||
color: #a5682a; /* brown */ | ||
background-color: transparent; | ||
text-decoration: none; | ||
a { | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
a[href]:hover { | ||
color: #000000; | ||
background-color: #ffff00; /* yellow */ | ||
text-decoration: underline; | ||
text-decoration: underline; | ||
} | ||
|
||
div { | ||
float: left; | ||
} | ||
float: left; } | ||
|
||
h1 { | ||
font-size: 2em; | ||
} | ||
h2 { | ||
font-size: 20px; | ||
} | ||
h3 { | ||
font-size: 17px; | ||
} | ||
h4 { | ||
font-size: 13px; | ||
} | ||
h5 { | ||
font-size: 12px; | ||
} | ||
h6 { | ||
font-size: 10px; | ||
} | ||
h1 { | ||
background: linear-gradient(60deg, #3d3393 0%, #2b76b9 37%, #2cacd1 65%, #35eb93 100%) | ||
} | ||
h1 { font-size: 25px; | ||
font-family: Inter, Georgia, BahnSchrift, sans-serif, Consolas; } | ||
h2 { font-size: 18px; | ||
font-family: Inter, Georgia, BahnSchrift, sans-serif, Consolas; } | ||
h3 { font-size: 17px; | ||
font-family: Inter, Georgia, BahnSchrift, sans-serif, Consolas; } | ||
h4 { font-size: 13px; | ||
font-family: Inter, Georgia, BahnSchrift, sans-serif, Consolas; } | ||
h5 { font-size: 12px; | ||
font-family: Bahnschrift, Inter, Helvetic, sans-serif; } | ||
h6 { font-size: 10px; | ||
font-family: Bahnschrift, Inter, Helvetic, sans-serif; } | ||
|
||
p { | ||
font-size: 15px; | ||
font-family: Bahnschrift, Inter, Helvetic, sans-serif, Consolas; | ||
margin-top: 1em; | ||
margin-bottom: 1em; | ||
margin-left: 10px; | ||
margin-right: 10px; | ||
} | ||
body { | ||
font-family: Bahnschrift, Inter, Helvetic, sans-serif; | ||
font-size: 1.2rem; | ||
background-color: #eeeeee; /* very light gray */ | ||
color: #000000; /* black */ | ||
text-align: left; | ||
padding: 10px; | ||
} | ||
|
||
figure { | ||
margin-top: 0; | ||
} | ||
figcaption { | ||
text-align: center; | ||
} | ||
#myBtn { | ||
display: none; | ||
position: fixed; | ||
bottom: 20px; | ||
right: 30px; | ||
z-index: 99; | ||
font-size: 11px; | ||
border: none; | ||
outline: none; | ||
background-color: #8b0000; /* dark red */ | ||
color: #fdfeff; /* very pale (mostly white) blue */ | ||
cursor: pointer; | ||
padding: 10px; /* 15px */ | ||
border-radius: 1px; /* 4px */ | ||
} | ||
#myBtn:hover { | ||
background-color: #ffc0cb; /* pink */ | ||
} | ||
|
||
details { | ||
font: 13px Inter, sans-serif, Bahnschrift, Calibri; | ||
width: 65%; | ||
} | ||
summary { | ||
font: 13px Inter, sans-serif, Bahnschrift, Calibri; | ||
width: 65%; | ||
font: 11px Inter, sans-serif, Bahnschrift, Calibri; | ||
width: min-content; /* 75%; */ | ||
} | ||
details > summary { | ||
padding: 2px 6px; | ||
width: 15em; /* 12em */ | ||
width: max-content; /* 12em */ | ||
background-color: #eee; /* very light gray */ | ||
border: none; | ||
box-shadow: 3px 3px 4px #00008b; /* dark blue */ | ||
cursor: pointer; | ||
margin-left: 10px; | ||
} | ||
details > p { | ||
border-radius: 0 0 10px 10px; | ||
background-color: #fff; /* white */ | ||
padding: 2px 6px; | ||
margin: 0; | ||
box-shadow: 3px 3px 4px #00008b; /* dark blue*/ | ||
box-shadow: 3px 3px 4px #0008b; /* dark blue */ | ||
cursor: pointer; | ||
} | ||
details[open] > summary { | ||
background-color: yellow; | ||
} | ||
<!-- added 11/06/2023 --> | ||
.box-wrap { | ||
width: 100%; | ||
height: auto; | ||
margin: 20px 0 0 0; | ||
-webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2); | ||
-moz-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2); | ||
box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2); | ||
} | ||
ul, ol { | ||
list-style-position:inside; | ||
} | ||
.box-wrap p { | ||
font-family:'Open Sans', Arial, Helvetica, sans-serif; | ||
font-size: 15px; | ||
padding: 5px 30px; | ||
overflow: hidden; | ||
text-align: left; | ||
width: 640px; | ||
height: auto; | ||
background: #ffffff; | ||
color: #717171; | ||
} | ||
.box-wrap li { | ||
font-family:'Open Sans', Arial, Helvetica, sans-serif; | ||
font-size: 15px; | ||
padding: 5px 30px; | ||
width: 640px; | ||
height: auto; | ||
background: #ffffff; | ||
color: #717171; | ||
} | ||
.box-wrap ul li { | ||
list-style-type: circle; | ||
} | ||
|
||
.showme { | ||
font-family: Consolas, Bahnschrift, Inter, Helvetic, sans-serif; | ||
font-size: 13.5px; | ||
pre, code { | ||
font-family: monospace, monospace; | ||
font-size: 10px; | ||
margin-left: 10px; | ||
} | ||
pre { | ||
overflow: auto; | ||
} | ||
pre > code { | ||
display: block; | ||
margin-left: 10px; | ||
padding: 1rem; | ||
word-wrap: normal; | ||
} | ||
pre[href]:hover { | ||
text-decoration: none; | ||
} |