-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcritFail.css
More file actions
123 lines (108 loc) · 2.05 KB
/
Copy pathcritFail.css
File metadata and controls
123 lines (108 loc) · 2.05 KB
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
@font-face {
font-family: 'vt323regular';
src: url('fonts/vt323-regular-webfont.woff2') format('woff2'),
url('fonts/vt323-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
* {
font-family: 'vt323regular';
margin-left:auto;
margin-right:auto;
}
body {
background-color: rgb(0,0,0);
margin: 0;
}
.modal {
display: none;
position: absolute;
left: 0;
top: 0;
z-index: 3;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4);
}
.modalContent {
position: absolute;
left: 50%;
top: 50%;
max-height: 90%;
transform: translateX(-50%) translateY(-50%);
overflow-y: auto;
background-color: rgb(226, 226, 226);
margin: auto;
padding: 20px;
border: 1px solid black;
border-radius: 8px;
}
input[type=text], input[type=password] {
padding: 0.75rem 1.25rem;
margin: 0.5rem 0;
display: inline-block;
border: 0.05rem solid #ccc;
box-sizing: border-box;
color: black;
}
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover {
color: black;
text-decoration: none;
cursor: pointer;
}
.button {
background-color: black;
border: 2px solid white;
color: white;
padding: 0.5em;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 0px;
cursor: pointer;
border-radius: 0.25em;
font-size: calc(0.25vw + 1rem);
}
.button:hover,
.button:focus{
background-color: white;
color: black;
}
.buttonRight{
width: 42.5%;
float: left;
text-align: left;
}
.buttonLeft{
width: 42.5%;
float: left;
text-align: right;
}
.centerSpace{
width: 15%;
float: left;
text-align: right;
}
.line{
width: 100%;
height: 5px;
margin-bottom: 1.5rem;
background-color: rgb(80,80,80);
}
.error{
background-color: black;
border-radius: 4px;
width: max-content;
padding: 0px 0.5em 0px 0.5em;
margin: 0.5em 0px 0px 0px;
color: red;
font-weight: bold;
display: none;
}