summaryrefslogtreecommitdiff
path: root/src/static/main.css
blob: 42173983c3e11bd50dd68b24ce63cd349dd40a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
	color: white;
	background: black;
	image-rendering: pixelated;
}

#root-container {
	margin: auto;
	text-align: center;
	width: min-content;
}

.content {
	margin-top: 0.75em;
}

.grey {
	color: #ddd !important;
}

img {
	width: 100%;
}

hr {
	border: none;
	height: 1px;
	background-color: #333;
  margin-bottom: 1em;
}

/* Program */

#program {
  line-height: var(--line-height);
}

.program-entry {
  position: relative;
}

.program-progress {
  display: inline-block;
  background: #006688;
  height: calc(1em * var(--line-height) * 0.8333);
  margin-top: calc(1em * var(--line-height) * 0.0833);
  position: absolute;
  left: 0;
  overflow: hidden;
  transform: translate(-0.25em); /* Add some spacing for text inset */
}

.program-text {
  position: absolute;
}

.program-text > * {
  float: left;
  white-space: preserve-spaces;
}

.program-spacer {
  color: #1a4047;
}

.rainbow {
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 0, 0, 1) 0,
    rgba(255, 154, 0, 1) 2rem,
    rgba(208, 222, 33, 1) 4rem,
    rgba(79, 220, 74, 1) 6rem,
    rgba(63, 218, 216, 1) 8rem,
    rgba(47, 201, 226, 1) 10rem,
    rgba(28, 127, 238, 1) 12rem,
    rgba(95, 21, 242, 1) 14rem,
    rgba(186, 12, 248, 1) 16rem,
    rgba(251, 7, 217, 1) 18rem,
    rgba(255, 0, 0, 1) 20rem
  );

  opacity: 0.8;
}

.egg::after {
  content: "🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚🥚";
  opacity: 0.33;
}

.radio::after {
  content: "📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻📻";
  opacity: 0.33;
}

.ctf::after {
  content: "🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩🚩";
  opacity: 0.33;
}