-
Notifications
You must be signed in to change notification settings - Fork 0
/
neo-sim.css
64 lines (64 loc) · 1.12 KB
/
neo-sim.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
@font-face {
font-family: NeoSmall;
src: url('NeoSmall.ttf');
}
@font-face {
font-family: NeoMedium;
src: url('NeoMedium.ttf');
}
@font-face {
font-family: NeoLarge;
src: url('NeoLarge.ttf');
}
body {
background-color: #536c6a; /* Neo2 #383e4a */
}
textarea {
resize: none;
width: 622px;
height: 150px;
margin: 220px 0;
padding: 4px;
color: #555;
background-color: #a4b99f;
border-radius: 6px;
border-color: rgba(0,0,0,0.6);
box-shadow: inset 0 0 10px black, 0 0 100px rgba(0,0,0,0.6);
overflow: hidden;
}
::selection {
background-color: #777; /* Not sure why #555 is too dark */
color: #a4b99f;
}
::-moz-selection {
background-color: #555;
color: #a4b99f;
}
textarea:focus {
outline: none;
}
textarea.small {
font-family: NeoSmall;
font-size: 30pt;
line-height: 23px;
}
textarea.medium {
font-family: NeoMedium;
font-size: 30pt;
line-height: 28px;
}
textarea.large {
font-family: NeoLarge;
font-size: 30pt;
line-height: 35px;
}
.hidden {
display: none;
}
table {
margin: 30px auto;
background-image: url('NeoBase.svg');
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}