-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
91 lines (78 loc) · 1.25 KB
/
styles.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
body {
margin: 0px;
background: #0f0f0f;
color: #fff;
font-family: 'Courier New', Courier, monospace;
font-size: 22pt;
font-weight: bold;
}
.background {
position: absolute;
display: block;
top: 0;
left: 0;
z-index: 0;
}
h2 {
text-align: center;
margin: 0;
margin-bottom: 8px !important;
}
a {
color: #15ff00;
}
.container {
background: #3f00a6;
padding: 30px;
display: inline-block;
border: 2px solid #fff;
box-shadow: 0px 9px 10px -1px #000;
z-index: 2;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
#input {
font-family: 'Courier New', Courier, monospace;
font-size: 0.8em;
padding: 12px;
border: 2px solid #fff;
background: #070012;
outline: none;
width: 700px;
color: #f2f2f2;
text-align: center;
}
p {
text-align: center;
margin: 0;
}
.form {
display: flex;
flex-direction: column;
align-items: center;
}
#answer, #warning {
margin-top: 50px;
background: #320085;
padding: 20px;
border-left: 2px solid #fff;
font-size: 0.8em;
box-shadow: 0px 2px 7px -1px #000;
}
#warning {
border-left: 2px solid red;
background: #a53400;
}
.green {
color: #0dff5e;
}
.red {
color: #ff2445;
}
.visible {
display: block !important;
}