1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/static/nryg.less

954 lines
19 KiB
Text
Raw Normal View History

2018-10-01 16:09:22 +00:00
@background-color: #0d193b;
@text-color: #a0ccff;
@accent-color: white;
2018-07-21 18:07:24 +00:00
@quote-color: #a0ffcc;
@spoiler-color: #ffa0cc;
2018-07-29 21:30:49 +00:00
@highlight-color: #ffff95;
2019-01-02 21:24:04 +00:00
@link-color: #4dc3ff;
2018-07-15 16:14:39 +00:00
@visited-color: #aa66ff;
2018-05-14 08:43:20 +00:00
body {
font-family: sans-serif;
2018-05-15 10:33:24 +00:00
color: @text-color;
background-color: @background-color;
2018-09-07 16:58:19 +00:00
box-sizing: border-box;
2018-05-14 08:43:20 +00:00
}
h1, h2, h3, h4, h5, h6 {
2018-05-15 10:33:24 +00:00
color: @accent-color;
2018-05-14 08:43:20 +00:00
}
2019-01-04 01:15:44 +00:00
h1 .whatsthis {
font-size: large;
}
2018-07-15 16:14:39 +00:00
a {
color: @link-color;
text-decoration: none;
2018-07-15 16:14:39 +00:00
&:hover, &:active {
color: @link-color;
text-decoration: underline;
}
2018-07-15 16:14:39 +00:00
&:visited {
color: @visited-color;
}
2018-07-15 16:14:39 +00:00
}
2018-07-21 18:07:24 +00:00
blockquote {
color: @quote-color;
2018-07-24 19:46:38 +00:00
border-left: 3px solid @quote-color;
2018-07-21 18:07:24 +00:00
background-color: rgba(red(@quote-color), green(@quote-color), blue(@quote-color), 0.1);
padding: 2px 4px 2px 8px;
2018-07-21 20:53:20 +00:00
margin-left: 8px;
2018-07-21 18:07:24 +00:00
2018-07-24 19:46:38 +00:00
p {
padding-top: 2px;
margin: 4px 0;
}
2018-07-21 18:07:24 +00:00
2018-07-31 17:38:28 +00:00
&.spoiler {
2018-07-24 19:46:38 +00:00
color: transparent;
border-color: @spoiler-color;
border-left-style: dashed;
2018-07-24 19:46:38 +00:00
background-color: rgba(red(@spoiler-color), green(@spoiler-color), blue(@spoiler-color), 0.1);
&:hover {
color: @spoiler-color;
}
}
2018-07-21 18:07:24 +00:00
2018-07-24 19:46:38 +00:00
&:target {
color: @highlight-color;
border-color: @highlight-color;
border-left-style: dotted;
2018-07-24 19:46:38 +00:00
background-color: rgba(red(@highlight-color), green(@highlight-color), blue(@highlight-color), 0.1);
}
2018-07-21 18:07:24 +00:00
}
2018-07-31 17:38:28 +00:00
pre {
margin: 0;
}
code {
font-family: "Consolas", "Source Code Pro", monospace;
}
2018-05-26 08:50:54 +00:00
input[type="text"], input[type="password"] {
2018-05-15 10:33:24 +00:00
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
color: @text-color;
border: none;
border-bottom: 1px dashed @text-color;
padding: 2px;
2018-05-26 08:50:54 +00:00
margin: 1px;
2018-05-15 10:33:24 +00:00
font-size: medium;
font-family: sans-serif;
2018-07-21 17:16:41 +00:00
width: 100%;
2019-01-04 01:29:30 +00:00
&.half {
width: 50%;
}
2018-05-15 10:33:24 +00:00
}
2018-05-26 08:50:54 +00:00
2018-07-15 12:41:42 +00:00
textarea {
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
color: @text-color;
font-size: small;
font-family: "Consolas", "Source Code Pro", monospace;
padding: 2px;
margin: 1px;
border: 1px dotted @text-color;
width: 100%;
2018-07-15 16:14:39 +00:00
height: 300px;
2019-01-04 12:25:28 +00:00
display: block;
2018-07-15 12:41:42 +00:00
}
2018-07-15 16:42:59 +00:00
button, input[type="submit"], .btn {
2018-07-15 12:41:42 +00:00
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
border-radius: 0;
border: 1px solid @text-color;
2018-07-15 16:40:25 +00:00
color: @text-color !important;
2018-07-21 17:21:28 +00:00
padding: 2px 8px;
2018-07-15 12:41:42 +00:00
margin: 1px;
font-size: medium;
font-family: sans-serif;
2018-07-15 16:40:25 +00:00
text-decoration: none;
cursor: default;
2018-07-15 12:41:42 +00:00
2018-07-24 19:46:38 +00:00
&:hover {
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.3);
border: 1px solid @accent-color;
}
2018-07-15 16:40:25 +00:00
2018-07-24 19:46:38 +00:00
&:active {
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.5);
color: @accent-color !important;
border: 1px solid @accent-color;
}
2018-07-15 16:40:25 +00:00
}
nav {
border-bottom: 1px solid rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
padding: 8px;
display: grid;
2018-07-29 16:00:30 +00:00
.ryg-logo {
width: 32px;
height: 32px;
vertical-align: middle;
2018-10-01 15:46:06 +00:00
border-radius: 32px;
2018-07-29 16:00:30 +00:00
}
2018-07-15 16:40:25 +00:00
.left
{
grid-column: 1;
text-align: left;
}
.right
{
grid-column: 2;
text-align: right;
}
}
2018-09-14 22:26:45 +00:00
table {
border-collapse: collapse;
thead {
margin-top: 4px;
margin-left: 4px;
margin-right: 4px;
padding: 8px;
th {
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.2);
color: @accent-color;
padding-left: 4px;
padding-right: 4px;
text-align: left;
font-size: small;
font-weight: bold;
}
tr:first-child {
th:first-child {
border-radius: 4px 0 0 0;
}
th:last-child {
border-radius: 0 4px 0 0;
}
}
}
tbody {
margin-bottom: 4px;
margin-left: 4px;
margin-right: 4px;
padding: 8px;
td {
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
padding-left: 4px;
padding-right: 4px;
}
tr {
border-bottom: 1px solid rgba(red(@text-color), green(@text-color), blue(@text-color), 0.2);;
&:last-child {
border-bottom: none;
td:first-child {
border-radius: 0 0 0 4px;
}
td:last-child {
border-radius: 0 0 4px 0;
}
}
}
}
}
2019-01-04 01:15:44 +00:00
.omnicontainer {
width: 380px;
margin-left: auto;
margin-right: auto;
@media (min-width: 792px)
{
width: 776px;
}
@media (min-width: 1180px)
{
width: 1164px;
}
@media (min-width: 1568px) {
width: 1552px;
}
}
2018-07-24 17:23:19 +00:00
.box {
2018-08-08 16:32:41 +00:00
.upper-box {
2018-07-24 17:48:50 +00:00
margin-top: 4px;
2018-07-24 17:23:19 +00:00
border-radius: 4px 4px 0 0;
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.2);
color: @accent-color;
font-size: small;
font-weight: bold;
2018-08-09 17:12:59 +00:00
margin-left: 4px;
margin-right: 4px;
padding: 8px;
2018-07-24 17:23:19 +00:00
}
2018-08-08 16:32:41 +00:00
.lower-box {
2018-08-09 17:12:59 +00:00
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
2018-07-24 17:48:50 +00:00
margin-bottom: 4px;
2018-08-09 17:12:59 +00:00
margin-left: 4px;
margin-right: 4px;
2018-07-24 17:23:19 +00:00
border-radius: 0 0 4px 4px;
2018-08-09 17:12:59 +00:00
padding: 8px;
2018-07-24 17:23:19 +00:00
}
}
2018-05-26 08:50:54 +00:00
.input-grid {
display: grid;
label {
margin: 3px;
grid-column: 1;
max-width: 120px;
}
input {
grid-column: 2;
}
}
2018-06-04 09:58:27 +00:00
@media (min-width:601px) {
.mobile-only {
display: none;
}
}
@media (max-width:600px) {
.desktop-only {
display: none;
}
}
2018-06-04 09:58:27 +00:00
.game-panel {
2018-06-04 15:09:56 +00:00
display: inline-block;
margin: 4px;
vertical-align: top;
2018-08-01 17:51:08 +00:00
width: 380px;
2018-06-04 15:09:56 +00:00
}
.game-grid {
2018-06-04 11:13:59 +00:00
display: grid;
2018-06-04 14:56:16 +00:00
height: 100px;
2018-06-04 15:09:56 +00:00
border-radius: 10px;
position: relative;
2018-06-05 08:34:59 +00:00
.game-title {
grid-row: 2;
font-size: smaller;
}
.game-score {
grid-row: 3;
}
2018-07-28 17:58:23 +00:00
.game-extra {
grid-row: 4;
font-size: smaller;
}
2018-06-05 08:34:59 +00:00
.player {
grid-row: 1;
font-size: large;
a {
text-decoration: none;
}
.player-image {
width: 32px;
height: 32px;
vertical-align: middle;
}
}
2018-06-04 09:58:27 +00:00
}
2018-07-31 17:15:52 +00:00
//Dirtiest hack ever
.game-panels {
font-size: 0;
2018-06-04 09:58:27 +00:00
2018-07-31 17:15:52 +00:00
.game-panel {
font-size: medium;
}
2018-06-04 09:58:27 +00:00
2018-07-31 17:15:52 +00:00
.osu {
font-family: 'Exo 2', 'Helvetica Neue', 'Arial', sans-serif;
font-style: italic;
border: 8px solid #ffffff;
color: #ffffff;
padding: 10px;
grid-row-gap: 5px;
grid-template-columns: 25% 25% 25% 25%;
.background-image {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background-image: url("https://osu.ppy.sh/images/layout/nav-backgrounds/triangles-combined.png");
z-index: -2;
2018-06-04 09:58:27 +00:00
}
2018-07-31 17:15:52 +00:00
.background-color {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background-color: rgba(187, 17, 119, 0.9);
z-index: -1;
2018-06-04 09:58:27 +00:00
}
2018-07-31 17:15:52 +00:00
.player {
grid-row: 1;
grid-column-start: 1;
grid-column-end: 4;
2018-06-04 09:58:27 +00:00
2018-07-31 17:15:52 +00:00
.player-image {
border-radius: 16px;
}
2018-06-04 09:58:27 +00:00
2018-07-31 17:15:52 +00:00
.player-name {
color: #ffffff;
}
}
2018-06-04 09:58:27 +00:00
2018-07-31 17:15:52 +00:00
.game-title {
font-style: normal;
2019-01-03 13:43:54 +00:00
text-align: center;
2019-01-02 17:16:53 +00:00
img {
vertical-align: sub;
}
2018-07-31 17:15:52 +00:00
}
2018-06-04 09:58:27 +00:00
2019-01-03 13:43:54 +00:00
.game-score {
text-align: center;
}
2018-07-31 17:15:52 +00:00
.standard {
grid-column: 1;
}
2018-06-04 09:58:27 +00:00
2018-07-31 17:15:52 +00:00
.taiko {
grid-column: 2;
}
2018-06-04 11:13:59 +00:00
2018-07-31 17:15:52 +00:00
.catch {
grid-column: 3;
}
2018-06-04 11:13:59 +00:00
2018-07-31 17:15:52 +00:00
.mania {
grid-column: 4;
}
2018-06-04 11:13:59 +00:00
2018-07-31 17:15:52 +00:00
.number {
font-size: large;
2018-06-04 11:13:59 +00:00
}
2018-07-31 17:15:52 +00:00
.pp {
font-size: x-small;
}
2018-06-04 11:13:59 +00:00
}
2018-07-31 17:15:52 +00:00
.rl {
background-image: linear-gradient(to bottom, rgba(35, 91, 139, .5), rgba(16, 54, 84, .5)),
linear-gradient(to right, rgba(35, 91, 139, .7), rgba(16, 54, 84, .7));
grid-template-columns: 25% 25% 25% 25%;
padding: 18px;
grid-row-gap: 5px;
2018-06-04 11:13:59 +00:00
2018-07-31 17:15:52 +00:00
.player {
grid-row: 1;
grid-column-start: 1;
grid-column-end: 4;
2018-06-04 11:13:59 +00:00
2018-07-31 17:15:52 +00:00
.player-name {
color: #ffffff;
text-shadow: 2px 2px 8px #359ef2, -2px 2px 8px #359ef2, 2px -2px 8px #359ef2, -2px -2px 8px #359ef2;
}
}
2018-06-04 11:13:59 +00:00
2018-07-31 17:15:52 +00:00
.game-title {
text-align: center;
color: #41abfa;
text-shadow: 2px 2px 8px #235b8b, -2px 2px 8px #235b8b, 2px -2px 8px #235b8b, -2px -2px 8px #235b8b;
}
2018-06-04 11:13:59 +00:00
2018-07-31 17:15:52 +00:00
.game-score img {
height: 36px;
display: block;
margin: auto;
}
2018-06-04 11:13:59 +00:00
2018-07-31 17:15:52 +00:00
.duel {
grid-column: 1;
}
2018-06-04 16:08:18 +00:00
2018-07-31 17:15:52 +00:00
.doubles {
grid-column: 2;
}
2018-06-04 16:08:18 +00:00
2018-07-31 17:15:52 +00:00
.standard {
grid-column: 3;
}
2018-06-04 16:08:18 +00:00
2018-07-31 17:15:52 +00:00
.solostd {
grid-column: 4;
2018-06-04 16:08:18 +00:00
}
}
2018-07-31 17:15:52 +00:00
.dota {
padding: 15px;
border: 3px solid #000000;
grid-row-gap: 5px;
grid-template-columns: 25% 75%;
font-family: "Radiance", sans-serif;
background-image: linear-gradient(to bottom, #440b0b, #631013);
color: #ffffff;
2018-06-04 16:08:18 +00:00
2018-07-31 17:15:52 +00:00
.player {
grid-row: 1;
grid-column-start: 1;
grid-column-end: 3;
2018-06-04 16:08:18 +00:00
2018-07-31 17:15:52 +00:00
.player-name {
color: #ffffff;
}
2018-06-04 16:08:18 +00:00
}
2018-07-31 17:15:52 +00:00
.game-score.wins {
font-size: x-large;
2018-06-04 16:08:18 +00:00
}
2018-07-31 17:15:52 +00:00
.wins {
grid-column: 1;
text-align: center;
2018-06-04 16:08:18 +00:00
}
2018-06-04 20:54:12 +00:00
2018-07-31 17:15:52 +00:00
.rank {
grid-column: 2;
grid-row-start: 2;
grid-row-end: 4;
margin-top: auto;
margin-bottom: auto;
img {
vertical-align: middle;
}
img.stars {
position: relative;
height: 60px;
left: -60px;
margin-right: -60px;
z-index: 1;
}
img.medal {
height: 60px;
}
2018-06-04 20:54:12 +00:00
}
}
2018-07-31 17:15:52 +00:00
.lol {
font-family: "BeaufortLoL", "Times New Roman", serif;
padding: 15px;
color: #c9aa71;
border: 3px solid #463714;
background-color: #010a13;
grid-row-gap: 5px;
2018-10-01 15:46:06 +00:00
grid-template-columns: 20% 20% 20% 20% 20%;
2018-06-05 08:34:59 +00:00
2018-07-31 17:15:52 +00:00
.player {
grid-row: 1;
grid-column-start: 1;
grid-column-end: 4;
2018-06-04 20:54:12 +00:00
2018-07-31 17:15:52 +00:00
.player-image {
border-radius: 16px;
}
}
2018-06-04 20:54:12 +00:00
2018-07-31 17:15:52 +00:00
.level {
grid-column: 1;
}
2018-06-04 20:54:12 +00:00
2018-07-31 17:15:52 +00:00
.game-score.level {
font-size: x-large;
}
2018-06-04 20:54:12 +00:00
2018-10-01 15:46:06 +00:00
.mastery {
2018-07-31 17:15:52 +00:00
grid-column: 2;
}
2018-06-04 20:54:12 +00:00
2018-10-01 15:46:06 +00:00
.game-score.mastery {
border-radius: 40px;
}
.soloq {
2018-07-31 17:15:52 +00:00
grid-column: 3;
}
2018-06-04 20:54:12 +00:00
2018-10-01 15:46:06 +00:00
.flexq {
2018-07-31 17:15:52 +00:00
grid-column: 4;
}
2018-06-05 08:34:59 +00:00
2018-10-01 15:46:06 +00:00
.twtrq {
grid-column: 5;
}
2018-07-31 17:15:52 +00:00
.game-title {
text-align: center;
}
2018-06-05 08:34:59 +00:00
2018-07-31 17:15:52 +00:00
.game-score {
text-align: center;
margin: auto;
}
2018-06-05 08:34:59 +00:00
2018-07-31 17:15:52 +00:00
.rank {
height: 40px;
}
2018-06-05 08:34:59 +00:00
}
2018-07-31 17:15:52 +00:00
.steam {
font-family: "Motiva Sans", sans-serif;
padding: 18px;
background: url("https://steamstore-a.akamaihd.net/public/images/v6/colored_body_top2.png?v=2") center;
2019-01-03 13:43:54 +00:00
grid-template-columns: auto 124px;
grid-template-rows: 58px 36px;
2018-06-05 08:34:59 +00:00
2018-07-31 17:15:52 +00:00
.player .player-name {
grid-row: 1;
grid-column: 1;
color: #ffffff;
2018-06-05 08:34:59 +00:00
}
2018-07-31 17:15:52 +00:00
.buttons {
grid-row: 2;
grid-column-start: 1;
grid-column-end: 3;
}
2018-06-05 08:34:59 +00:00
2018-07-31 17:15:52 +00:00
.game-banner {
grid-row: 1;
grid-column: 2;
text-align: right;
2018-06-05 08:34:59 +00:00
2019-01-03 13:13:23 +00:00
.game-image {
2018-07-31 17:15:52 +00:00
height: 58px;
2019-01-03 13:43:54 +00:00
width: 124px;
2018-07-31 17:15:52 +00:00
border-radius: 4px;
2019-01-03 13:43:54 +00:00
display: inline-block;
2019-01-03 13:56:04 +00:00
background-color: rgba(0, 0, 0, 10%);
2018-07-31 17:15:52 +00:00
}
}
2018-07-31 17:15:52 +00:00
a {
text-decoration: none;
display: inline-block;
}
2018-07-31 17:15:52 +00:00
.button {
background-color: rgba(0, 0, 0, 0.4);
color: #9e9d9b;
width: 32px;
height: 32px;
border-radius: 4px;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
2018-06-07 13:31:32 +00:00
}
2018-07-31 17:15:52 +00:00
.button:hover, .button:active {
background-color: rgba(102, 192, 244, 0.4);
2018-06-07 13:31:32 +00:00
color: #ffffff;
}
}
2018-07-31 17:15:52 +00:00
.ow {
padding: 16px;
font-family: "FuturaNo2D", sans-serif;
background-color: #371b00;
border: 2px solid #ff9c00;
grid-row-gap: 5px;
grid-template-columns: 25% 75%;
color: #ffffff;
text-transform: uppercase;
2018-06-07 13:31:32 +00:00
2018-07-31 17:15:52 +00:00
.player {
grid-row: 1;
grid-column-start: 1;
grid-column-end: 3;
2018-07-31 17:15:52 +00:00
.player-image {
border-radius: 2px;
vertical-align: middle;
}
2018-07-31 17:15:52 +00:00
.player-name {
color: #ffffff;
}
}
2018-07-31 17:15:52 +00:00
.game-title {
color: #ff9c00;
}
2018-07-31 17:15:52 +00:00
.game-score.level {
2018-06-07 13:31:32 +00:00
font-size: x-large;
}
2018-07-31 17:15:52 +00:00
.level {
grid-column: 1;
text-align: center;
}
2018-06-08 18:13:20 +00:00
2018-07-31 17:15:52 +00:00
.rank {
grid-column: 2;
grid-row-start: 2;
grid-row-end: 4;
margin-top: auto;
margin-bottom: auto;
.icon {
background-color: rgba(0, 0, 0, 0.1);
border-radius: 8px;
height: 60px;
width: 60px;
display: inline-block;
vertical-align: middle;
margin-right: 8px;
}
.ranked.text {
font-size: x-large;
}
}
2018-06-08 18:13:20 +00:00
}
2018-07-31 17:15:52 +00:00
.ryg {
2018-10-01 15:46:06 +00:00
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
2018-07-31 17:15:52 +00:00
padding: 18px;
grid-template-columns: 80% 20%;
2018-06-08 18:13:20 +00:00
2018-07-31 17:15:52 +00:00
.player {
grid-row: 1;
grid-column-start: 1;
grid-column-end: 3;
font-weight: bold;
}
2018-06-08 18:13:20 +00:00
2018-07-31 17:15:52 +00:00
.member-status {
grid-column: 1;
grid-row-start: 2;
grid-row-end: 4;
font-size: x-large;
margin-top: auto;
margin-bottom: auto;
}
2018-06-08 18:13:20 +00:00
2018-07-31 17:15:52 +00:00
.fiorygi {
grid-column: 2;
}
2018-07-25 21:52:38 +00:00
2018-07-31 17:15:52 +00:00
.fiorygi.game-score {
font-size: x-large;
}
2018-07-25 21:52:38 +00:00
}
2018-07-31 17:15:52 +00:00
.telegram {
font-family: "Lucida Sans Unicode", sans-serif;
background-color: #32afed;
border: 6px solid white;
padding: 12px;
color: black;
2018-07-25 21:52:38 +00:00
2018-07-31 17:15:52 +00:00
a, a:hover, a:active, a:visited {
color: black;
}
2018-07-25 21:52:38 +00:00
2018-07-31 17:15:52 +00:00
.player {
font-weight: bold;
}
2018-07-25 21:52:38 +00:00
2018-07-31 17:15:52 +00:00
.useless-stuff {
grid-column: 1;
}
2018-07-25 21:52:38 +00:00
}
2018-07-31 17:15:52 +00:00
.discord {
background-color: #7289da;
padding: 18px;
color: white;
font-family: "Whitney", sans-serif;
grid-template-columns: 50% 50%;
2018-07-31 17:15:52 +00:00
a, a:hover, a:active, a:visited {
color: white;
}
2018-07-28 17:58:23 +00:00
2018-07-31 17:15:52 +00:00
.player-image {
border-radius: 16px;
}
2018-07-26 17:26:03 +00:00
2018-07-31 17:15:52 +00:00
.game-score {
overflow: hidden;
}
2018-07-26 17:26:03 +00:00
2018-07-31 17:15:52 +00:00
.last-video {
2018-09-13 23:32:56 +00:00
grid-column: 1;
2018-07-31 17:15:52 +00:00
}
.fav-video {
grid-column: 2;
}
.none {
color: rgba(255, 255, 255, 0.3);
2018-09-13 23:32:56 +00:00
}
}
.gamelog {
background-color: #00ffc8;
padding: 18px;
color: black;
font-family: "Arial", sans-serif;
grid-template-columns: 33.3% 33.4% 33.3%;
.games-owned {
grid-column: 1;
}
.games-beaten {
grid-column: 2;
}
.games-completed {
grid-column: 3;
2018-07-31 17:15:52 +00:00
}
}
2018-11-03 17:45:35 +00:00
.halloweenmini {
background-color: #311515;
2018-11-03 17:57:44 +00:00
color: #ffa1a1;
2018-11-03 17:45:35 +00:00
padding: 18px;
grid-template-columns: 100%;
.mysterystatus.game-score {
font-size: 0;
i {
font-size: 34px;
}
}
}
}
2018-07-15 12:41:42 +00:00
.wiki {
2018-07-15 16:48:47 +00:00
2018-07-15 12:41:42 +00:00
.wiki-log {
font-family: "Consolas", "Source Code Pro", monospace;
2018-07-15 16:56:21 +00:00
margin-bottom: 12px;
2018-07-15 12:41:42 +00:00
.last-reason {
font-style: italic;
}
}
2018-07-15 16:53:05 +00:00
.wiki-edit {
2018-07-15 16:55:16 +00:00
border-top: 1px solid rgba(red(@text-color), green(@text-color), blue(@text-color), 0.3);
2018-07-15 16:53:05 +00:00
h4 {
padding: 0;
}
}
2018-07-31 17:15:52 +00:00
//Text generated by the Markdown extension
.codehilite {
border-radius: 4px;
padding: 4px;
}
2018-07-15 12:41:42 +00:00
}
2018-10-07 15:19:42 +00:00
.entry {
display: grid;
.left {
grid-column: 1;
}
.right {
grid-column: 2;
text-align: right;
margin-top: auto;
}
cite {
font-size: smaller;
}
.entry-id {
text-align: right;
}
}
2018-07-24 17:23:19 +00:00
.main-page {
display: grid;
@media (min-width:601px) {
//Desktop
2018-07-24 17:50:54 +00:00
grid-template-columns: 50% 50%;
2018-07-24 17:23:19 +00:00
.left {
grid-column: 1;
}
.right {
grid-column: 2;
}
}
@media (max-width:600px) {
//Mobile
2018-07-24 17:50:54 +00:00
grid-template-columns: 100%;
2018-07-24 17:23:19 +00:00
.left {
grid-row: 1;
}
.right {
grid-row: 2;
}
2018-11-03 17:45:35 +00:00
.halloween {
grid-row-start: 1;
grid-row-end: 3;
}
}
2019-01-02 16:53:31 +00:00
ul {
column-width: 200px;
2019-01-02 16:57:05 +00:00
word-wrap: break-word;
2019-01-02 16:53:31 +00:00
}
2018-07-24 17:23:19 +00:00
}
.event {
display: grid;
padding-top: 4px;
padding-bottom: 4px;
2018-07-31 16:47:57 +00:00
grid-template-columns: 28% 50% 22%;
2018-07-24 17:23:19 +00:00
.time {
grid-column: 1;
grid-row: 1;
}
.name {
grid-column: 2;
grid-row: 1;
font-weight: bold;
2018-07-31 16:47:57 +00:00
color: @accent-color;
2018-07-24 17:23:19 +00:00
}
.author {
grid-column: 3;
grid-row: 1;
2018-07-31 16:47:57 +00:00
text-align: right;
2018-07-24 17:23:19 +00:00
}
.description {
grid-row: 2;
grid-column-start: 1;
grid-column-end: 4;
}
}
2018-11-03 17:42:56 +00:00
.mysterystatus i {
&.todo {
color: rgba(255, 255, 0, 0.2);
}
&.done {
color: rgba(255, 255, 0, 1);
}
}
2018-09-12 23:51:06 +00:00
#debug-mode {
color: red;
font-weight: bold;
background-color: darkred;
}
2018-06-05 10:31:11 +00:00
#edit-css {
font-size: medium;
2018-09-07 16:58:19 +00:00
}