-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (112 loc) · 3.3 KB
/
style.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
120
121
122
123
124
125
126
127
/* Syntax Blast Rules **/
body {
background:
repeating-linear-gradient( 45deg,#0000 calc(-650%/13) calc(50%/13),#69e54e 0 calc(100%/13),
#0000 0 calc(150%/13),#69e54e 0 calc(200%/13),
#0000 0 calc(250%/13),#69e54e 0 calc(300%/13)),repeating-linear-gradient( 45deg,#0000 calc(-650%/13) calc(50%/13),#69e54e 0 calc(100%/13),
#0000 0 calc(150%/13),#69e54e 0 calc(200%/13),
#0000 0 calc(250%/13),#69e54e 0 calc(300%/13)) 17px 17px,
repeating-linear-gradient(-45deg,#0000 calc(-650%/13) calc(50%/13),#69e54e 0 calc(100%/13),
#0000 0 calc(150%/13),#69e54e 0 calc(200%/13),
#0000 0 calc(250%/13),#69e54e 0 calc(300%/13)),repeating-linear-gradient(-45deg,#0000 calc(-650%/13) calc(50%/13),#69e54e 0 calc(100%/13),
#0000 0 calc(150%/13),#69e54e 0 calc(200%/13),
#0000 0 calc(250%/13),#69e54e 0 calc(300%/13)) 17px 17px #050404;
background-size: 34px 34px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-weight: 900;
font-size: larger;
text-align: center;
}
header {
padding: 30px;
margin-bottom: 15px;
}
#start-button {
width: 475px;
height: 70px;
padding: 12px;
border-radius: 12px;
border: solid 5px darkviolet;
background-color: #e3e3e8;
color: indigo;
font-size: xx-large;
font-weight: 900;
text-shadow: -5px 3px 5px lime, -7px 6px 10px #000;
box-shadow: 0px -10px 15px teal inset, 0px 10px 10px #000;
}
#current-challenge {
background-color: #ff5700;
color: #222;
padding: 30px;
padding-bottom: 10px;
margin: 10px auto;
border: solid 3px #000;
width: 4vw; /* up to 45 **/
height: 10vh;
font-size: 16px;
font-weight: 700;
transition: font-size .25s ease-in-out;
border-radius: 12px;
text-shadow:3px 3px 5px lime, -7px 7px 5px #000;
box-shadow: 0px -10px 15px teal inset, 0px 10px 10px #000,
inset 0px 25px 15px yellow, inset 0px 0px 15px red;
opacity: 0;
transform: skew(10deg, 0deg); /* skew */
}
#player-input {
min-height:100px;
width: 45vw;
font-size: 2.5em;
text-align: center;
margin: 20px auto;
padding: 15px;
background-color:#0B0A0C;
color: lime;
font-family:'Courier New', Courier, monospace;
border: dashed 5px #00dd70;
border-radius: 15px;
text-shadow: -5px 3px 5px #2d073a, -7px 6px 10px #000;
box-shadow: 0px -10px 15px teal inset, 0px 10px 10px #000;
}
/* NOTE: remember that darkslategrey looks smooth behind the logo
- think about this if/when I/we ever do themed levels <--- which
- should definitely be a thing.
THIS GAME IS A BIG KIDS HTML VANILLA JS NO FRAMEWORK PLAYGROUND OF
- - - - - - - - - - - - - - A R T - - - - - - - - - - - - - - - -
*/
#logo {
width: 475px;
height: 325px;
padding: 30px;
}
#logo.mini {
width: 225px;
height: 125px;
padding: 30px;
position: absolute;
left: 0;
}
#player-stats {
padding: 10px;
width: 275PX;;
min-height: 35px;
background-color:#0B0A0C;
color: lime;
font-family:'Courier New', Courier, monospace;
margin: 15px;
position: relative;
left: 50vw;
border: dashed 5px #00dd70;
border-radius: 15px;
text-shadow: -5px 3px 5px #2d073a, -7px 6px 10px #000;
box-shadow: 0px -10px 15px teal inset, 0px 10px 10px #000;
}
#player-stats p {
border-radius: 15px;
opacity: 1;
font-size: 1.25em;
padding: 15px;
text-align: justify;
}
/* Lil' Helpers **/
.hidden, .devtrack { display: none }