forked from FoxRefire/wvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (94 loc) · 1.54 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
.hidden {
display: none;
}
html, body {
display: grid;
height: 100%;
width: 100%;
margin: 0; /* Reset default margin */
padding: 0; /* Reset default padding */
}
body {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background: linear-gradient(45deg, #0d364c, #062535, #02141e);
grid-template-rows: auto 1fr auto;
}
#noEME {
justify-self: center;
align-self: center;
color: white;
}
#updateNotice {
justify-self: center;
align-self: end;
color: white;
}
#updateNotice a{
color: aqua;
}
#wvForm {
display: grid;
grid-template-rows: auto;
color: white;
}
#wvForm label {
justify-self: center;
}
#pssh {
width: 80%;
justify-self: center;
}
#psshButton {
width: 20%;
justify-self: center;
}
#license {
width: 80%;
justify-self: center;
}
#licenseButton {
width: 20%;
justify-self: center;
}
#scheme {
width: 80%;
justify-self: center;
}
#toggleHistory {
display: grid;
}
#toggleHistory button {
width: 20%;
height: auto;
}
#guess {
width: 20%;
justify-self: center;
margin-top: 5%;
}
#result {
width: 90%;
overflow-y: scroll;
overflow-x: hidden;
resize: none;
justify-self: center;
}
#psshList, #requestList {
color: white;
}
#ckHome h3, label {
color: white;
justify-self: center;
}
#ckHome label {
align-self: end;
}
#ckResult {
width: 90%;
overflow-y: scroll;
overflow-x: hidden;
resize: none;
justify-self: center;
}