123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- /**
- * Reset some basic elements
- */
- body, h1, h2, h3, h4, h5, h6,
- p, blockquote, pre, hr,
- dl, dd, ol, ul, figure {
- margin: 0;
- padding: 0;
- }
- /**
- * Basic styling
- */
- body {
- font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family;
- color: $text-color;
- background-color: $background-color;
- -webkit-text-size-adjust: 100%;
- -webkit-font-feature-settings: "kern" 1;
- -moz-font-feature-settings: "kern" 1;
- -o-font-feature-settings: "kern" 1;
- font-feature-settings: "kern" 1;
- font-kerning: normal;
- }
- /**
- * Set `margin-bottom` to maintain vertical rhythm
- */
- h1, h2, h3, h4, h5, h6,
- p, blockquote, pre,
- ul, ol, dl, figure,
- %vertical-rhythm {
- margin-bottom: $spacing-unit / 2;
- }
- /**
- * Images
- */
- img {
- max-width: 100%;
- vertical-align: middle;
- }
- /**
- * Figures
- */
- figure > img {
- display: block;
- }
- figcaption {
- font-size: $small-font-size;
- }
- /**
- * Lists
- */
- ul, ol {
- margin-left: $spacing-unit;
- }
- li {
- > ul,
- > ol {
- margin-bottom: 0;
- }
- }
- /**
- * Headings
- */
- h1, h2, h3, h4, h5, h6 {
- font-weight: $base-font-weight;
- }
- /**
- * Links
- */
- a {
- color: $brand-color;
- text-decoration: none;
- &:visited {
- color: darken($brand-color, 15%);
- }
- &:hover {
- color: $text-color;
- text-decoration: underline;
- }
- }
- /**
- * Blockquotes
- */
- blockquote {
- color: $grey-color;
- border-left: 4px solid $grey-color-light;
- padding-left: $spacing-unit / 2;
- font-size: 18px;
- letter-spacing: -1px;
- font-style: italic;
- > :last-child {
- margin-bottom: 0;
- }
- }
- /**
- * Code formatting
- */
- pre,
- code {
- font-size: 15px;
- border: 1px solid $grey-color-light;
- border-radius: 3px;
- background-color: #eef;
- }
- code {
- padding: 1px 5px;
- }
- pre {
- padding: 8px 12px;
- overflow-x: auto;
- > code {
- border: 0;
- padding-right: 0;
- padding-left: 0;
- }
- }
- /**
- * Wrapper
- */
- .wrapper {
- max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
- max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
- margin-right: auto;
- margin-left: auto;
- padding-right: $spacing-unit;
- padding-left: $spacing-unit;
- @extend %clearfix;
- @include media-query($on-laptop) {
- max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
- max-width: calc(#{$content-width} - (#{$spacing-unit}));
- padding-right: $spacing-unit / 2;
- padding-left: $spacing-unit / 2;
- }
- }
- /**
- * Clearfix
- */
- %clearfix {
- &:after {
- content: "";
- display: table;
- clear: both;
- }
- }
- /**
- * Icons
- */
- .icon {
- > svg {
- display: inline-block;
- width: 16px;
- height: 16px;
- vertical-align: middle;
- path {
- fill: $grey-color;
- }
- }
- }
- /* BEGIN COMMUNITYRULE-SPECIFIC CSS */
- /* CLASSES */
- .callout-text {
- font-family: serif;
- font-size:2em;
- margin:1.5em 0 1em 0;
- }
- .callout-icon {
- font-size:2em;
- margin:1.5em 0 1em 0;
- }
- .editable { /* All editable fields */
- padding: 10px 10px 10px 10px;
- min-height: 1.5em;
- font-family: serif;
- border-bottom: 1px dashed gray;
- }
- .question {
- color: gray;
- }
- /* Tooltip for Modules
- https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip_right
- This could bear substantial improvement. */
- .button {
- position: relative;
- display: inline-block;
- float: right;
- border: 1px solid gray;
- color: gray;
- background-color: white;
- text-align: center;
- border-radius: 6px;
- padding: 0 5px 0 5px;
- }
- .button .tooltiptext {
- visibility: hidden;
- width: 250px;
- border: 1px solid black;
- background-color: white;
- text-align: center;
- border-radius: 6px;
- padding: 5px 0;
- /* Position the tooltip */
- position: absolute;
- z-index: 1;
- right: 100%;
- }
- .button:hover {
- background-color: lightgray;
- }
- .button:hover .tooltiptext {
- visibility: visible;
- }
- /* pushButton
- These are the major functional buttons*/
- .pushButton {
- border: 1px solid gray;
- color: gray;
- background-color: white;
- text-align: center;
- border-radius: 6px;
- padding: 5px;
- font-size: 1.2em;
- }
- .pushButton:hover {
- background-color: lightgray;
- }
- .plus { /* The maximize/minimize button */
- font-size: 1em;
- }
- .icons {
- /* icons are from https://github.com/tabler/tabler-icons */
- margin: 0 5px 0 0;
- }
- /* VARIOUS IDs */
- #rulebox {
- border: 1px solid lightgray;
- padding: 20px;
- margin: 20px 0 30px 0;
- }
- #rulebox h2 {
- font-family: serif;
- }
- #communityname {
- font-weight: bold;
- }
- #editToggle {
- float: right;
- clear: both;
- }
- #toggleDisplayMode {
- margin: 0 0 10px 0;
- display: none;
- }
- #publishRule {
- margin: 0 0 10px 0;
- }
- #structure {
- font-size: 1.3em;
- }
- #attribution {
- font-family: serif;
- font-size: .8em;
- text-align: right;
- }
- #trash {
- display: none;
- }
|