-
Notifications
You must be signed in to change notification settings - Fork 1
/
redshift.css
119 lines (119 loc) · 2.92 KB
/
redshift.css
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
@font-face {
font-family: 'Righteous';
font-style: normal;
font-weight: 400;
src: local('Righteous'), local('Righteous-Regular'), url(https://fonts.gstatic.com/s/righteous/v7/1cXxaUPXBpj2rGoU7C9WiHGF.woff2) format('woff2');
unicode-range: U+0032-0033, U+0041, U+0044, U+0052-0054, U+0058-0060;
}
@font-face {
font-family: 'Exo';
font-style: italic;
font-weight: 800;
src: local('Exo ExtraBold Italic'), local('Exo-ExtraBoldItalic'), url(https://fonts.gstatic.com/s/exo/v8/4UaBrEtFpBISdkYG9iLhx6g.woff2) format('woff2');
unicode-range: U+0044-0046, U+0048-0049, U+0052-0054;
}
:root {
--bg-top: #427b52;
--bg-bottom: #5d743e;
--screen-black: #03120d;
--rs-body-dark: #100a05;
--rs-body-mid: #241e18;
--rs-body-light: #443d35;
--rs-red: #a71718;
--rs-dark-red: #971718;
--rs-teal: #0dbda3;
--rs-white: #f3fcf5;
--dark-shadow: #000000b4;
--led-red: #e4567e;
--led-pink: #ebd6dd;
}
#rsarea {
flex: 2 5 auto;
display: flex;
background: linear-gradient(var(--bg-top), var(--bg-bottom));
border-radius: 0;
border: 0;
height: 100vh;
}
#redshift {
flex: 0 0 auto;
border-radius: 8px;
display: flex;
flex-direction: column;
margin: auto;
padding: 8px 12px 6px;
width: 260px;
height: 440px;
background: linear-gradient(28deg, var(--rs-body-mid) 7%, transparent 8%),
linear-gradient(332deg, var(--rs-body-dark) 7%, transparent 8%),
linear-gradient(245deg, var(--rs-body-mid) 0%,
var(--rs-body-mid) 61%, var(--rs-body-light) 62%);
box-shadow: inset -1px 1px 4px var(--rs-body-mid),
inset 2px 3px 8px var(--rs-body-light),
inset -3px 1px 2px var(--rs-body-light),
22px 18px 10px var(--dark-shadow),
-4px 9px 30px var(--shadow);
align-content: space-around;
justify-content: space-around;
}
.rstop {
display: flex;
padding-bottom: 2px;
}
.logo {
color: var(--rs-white);
font-family: 'Exo', sans-serif;
font-size: 17px;
text-align: right;
align-items: center;
text-shadow: 1px 0 var(--rs-teal),
-2px 0 var(--rs-red);
margin-bottom: 0px 0px 5px 5px;
}
#stripes {
margin-left: auto;
}
#redshift * {
flex: 0 1 auto;
}
.screenbox {
display: flex;
flex-direction: column;
background-color: var(--rs-body-mid);
padding: 10px;
padding-bottom: 0;
border: thick groove var(--rs-body-light);
margin: 0;
border-radius: 15px;
align-items: center;
justify-content: center;
}
.subline {
font-family: 'Roboto Condensed';
font-size: 4pt;
text-align: right;
color: var(--rs-body-light);
padding-right: 4ch;
align-self: flex-end;
}
#tec {
text-align: center;
text-shadow: none;
border-radius: 35%;
color: var(--rs-body-light);
background-color: var(--rs-body-mid);
padding: 0 2px;
border: 1.5px inset var(--rs-body-mid);
margin: 0px auto;
font-family: serif;
font-style: italic;
font-weight: 800;
font-size: 0.75em;
}
#redshift > svg {
flex: 1 1 auto;
min-height: 100px;
}
#redshift text {
font-family: "Righteous", sans-serif;
}