electrikjesus | 052b6e1 | 2017-04-28 13:32:26 -0400 | [diff] [blame] | 1 | $text:#EFEFAE; |
| 2 | $highlighttext:#FFFFAE; |
| 3 | $black:#262626; |
| 4 | $darkgrey:#3A3A3A; |
| 5 | $grey:#bcbcbc; |
| 6 | $highlight:#005F5F; |
| 7 | $selftext:#83A598; |
| 8 | |
| 9 | $cream:#ffd7af; |
| 10 | $lightblue:#87afaf; |
| 11 | $green:#afaf00; |
| 12 | $red:#d75f5f; |
| 13 | $textred:#E3A786; |
| 14 | $orange:#dd6f48; |
| 15 | $pink:#d787af; |
| 16 | $gold:#ff8700; |
| 17 | $yellow:#ffaf00; |
| 18 | $darkgreen:#878700; |
| 19 | $turquoise:#87af87; |
| 20 | $blue:#5f8787; |
| 21 | $darkblue:#005f87; |
| 22 | $purple:#875f87; |
| 23 | $lighterblue:#83a598; |
| 24 | |
| 25 | body { |
| 26 | background-color:$darkgrey; |
| 27 | color:$text; |
| 28 | font-family: 'Fira Mono', Monospace; |
| 29 | margin:0; |
| 30 | overflow-x:hidden; |
| 31 | a { |
| 32 | color:inherit; |
| 33 | &:hover{ |
| 34 | color:$highlighttext; |
| 35 | background-color:$highlight; |
| 36 | } |
| 37 | } |
| 38 | .stream { |
| 39 | margin-top:8px; |
| 40 | } |
| 41 | .line { |
| 42 | margin:0; |
| 43 | padding:0; |
| 44 | display:flex; |
| 45 | flex-direction:row; |
| 46 | margin:0 4px; |
| 47 | padding-top:2px; |
| 48 | width:calc(100% - 12px); |
| 49 | p { |
| 50 | display:inline-block; |
| 51 | margin:0; |
| 52 | padding:0; |
| 53 | } |
| 54 | .name { |
| 55 | max-width:80px; |
| 56 | min-width:80px; |
| 57 | text-align:right; |
| 58 | padding-right:6px; |
| 59 | } |
| 60 | } |
| 61 | .editline { |
| 62 | background-color:$black; |
| 63 | padding: 2px 4px 0px 4px; |
| 64 | width:calc(100%); |
| 65 | .edit { |
| 66 | min-width:calc(100% - 200px); |
| 67 | outline:none; |
| 68 | } |
| 69 | margin:0; |
| 70 | margin-bottom:8px; |
| 71 | .time { |
| 72 | user-select: none; |
| 73 | cursor:default; |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | .whitet { |
| 78 | color:$highlighttext; |
| 79 | } |
| 80 | .redt { |
| 81 | color:$red; |
| 82 | } |
| 83 | .important { |
| 84 | color:$textred; |
| 85 | } |
| 86 | .bluet { |
| 87 | color:$blue; |
| 88 | } |
| 89 | .greent { |
| 90 | color:$green; |
| 91 | } |
| 92 | .selft { |
| 93 | color:$selftext; |
| 94 | } |
| 95 | ::selection { |
| 96 | color:$highlighttext; |
| 97 | background: $highlight; |
| 98 | } |
| 99 | ::-webkit-scrollbar{background-color:$darkgrey;width:10px;height:10px;} |
| 100 | ::-webkit-scrollbar-thumb{background-color:$grey;} |
| 101 | ::-webkit-scrollbar-corner{background-color:$darkgrey;} |
| 102 | ::-webkit-resizer{background-color:$darkgrey;} |
| 103 | |
| 104 | |
| 105 | .phjspenheader:hover { |
| 106 | background-color: #D44C2A |
| 107 | } |