This repository has been archived on 2020-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
Syllabus/themes/piratecare/assets/css/site.css

171 lines
2.8 KiB
CSS
Raw Normal View History

2020-03-05 04:10:52 +00:00
@font-face {
font-family: 'PlayfairDisplay Black';
font-weight: 400;
src: url("../fonts/PlayfairDisplay-Black.woff") format('woff');
}
@font-face {
font-family: 'PlayfairDisplay Italic';
font-weight: 400;
src: url("../fonts/PlayfairDisplay-Italic.woff") format('woff');
}
@font-face {
font-family: 'PlayfairDisplay BlackItalic';
font-weight: 400;
src: url("../fonts/PlayfairDisplay-BlackItalic.woff") format('woff');
}
@font-face {
font-family: 'PlayfairDisplay Bold';
font-weight: 400;
src: url("../fonts/PlayfairDisplay-Bold.woff") format('woff');
}
@font-face {
font-family: 'PlayfairDisplay BoldItalic';
font-weight: 400;
src: url("../fonts/PlayfairDisplay-BoldItalic.woff") format('woff');
}
@font-face {
font-family: 'PlayfairDisplay Regular';
font-weight: 400;
src: url("../fonts/PlayfairDisplay-Regular.woff") format('woff');
}
@font-face {
font-family: 'PlayfairDisplay SC-Regular';
font-weight: 400;
src: url("../fonts/PlayfairDisplaySC-Regular.woff") format('woff');
}
@font-face {
font-family: 'VG5000-Regular';
font-weight: 400;
src: url("../fonts/VG5000-Regular_web.woff") format('woff');
}
button, [type=button] {
-webkit-appearance: none;
}
html {
2020-03-06 22:12:40 +00:00
font-size: 1.2em;
2020-03-05 04:10:52 +00:00
@apply bg-CoconutCream;
}
2020-03-10 16:31:40 +00:00
img {
@apply py-2;
2020-03-10 16:31:40 +00:00
}
2020-03-07 01:56:42 +00:00
/* purgecss ignore */
2020-03-06 22:12:40 +00:00
h1 {
@apply text-3xl;
}
2020-03-07 01:56:42 +00:00
/* purgecss ignore */
2020-03-06 22:12:40 +00:00
h2 {
@apply text-2xl;
}
2020-03-07 01:56:42 +00:00
/* purgecss ignore */
2020-03-06 22:12:40 +00:00
h3 {
@apply text-xl;
}
2020-03-07 01:56:42 +00:00
/* purgecss ignore */
2020-03-06 22:12:40 +00:00
blockquote {
@apply italic;
2020-03-07 01:56:42 +00:00
}
2020-03-06 22:12:40 +00:00
2020-03-07 01:56:42 +00:00
p {
@apply pb-2 leading-tight;
2020-03-06 22:12:40 +00:00
}
2020-03-05 04:10:52 +00:00
footer {
@apply font-vg5000 text-xs text-Revolver;
}
2020-03-05 16:45:16 +00:00
article ul {
@apply relative list-none ml-0 pl-3;
}
article ul li:before {
@apply font-vg5000 text-AuChico text-xs left-0 absolute pt-2 pb-2;
content: "•";
}
article li {
@apply pl-2;
}
2020-03-05 04:10:52 +00:00
a {
@apply text-AuChico;
}
a:hover {
@apply underline;
}
.edit-button {
@apply border-b-4 border-CoconutCream px-1 bg-AuChico mb-2 font-vg5000 text-CoconutCream;
}
.edit-button:hover {
@apply bg-CoconutCream text-AuChico border-b-2 border-AuChico;
}
.title-text {
@apply font-playfair text-4xl text-AuChico;
}
.title-pretext {
@apply font-vg5000 text-base text-AuChico;
}
.content-text {
@apply font-playfair text-xl text-Revolver;
}
.sidebar-title {
@apply font-vg5000 text-base text-AuChico;
}
.sidebar-list {
@apply font-vg5000 text-xl text-AuChico;
}
.logo {
@apply font-vg5000 text-xl text-AuChico pt-2;
}
/* dropdown menu */
.ddmenu .sidebar-title {
cursor: pointer;
}
.ddmenu input {
display: none;
}
.ddmenu .hiddendiv {
@apply pb-1 hidden;
}
.ddmenu input:not(:checked) ~ .hiddendiv {
@apply block pb-4;
}
#TableOfContents {
@apply font-vg5000 text-xl text-AuChico -ml-2;
}
#TableOfContents ul {
@apply ml-2;
}
#TableOfContents li:before {
content: "> ";
}