-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
107 lines (92 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
body {
background-color: rgba(41, 45, 52, 1);
color: rgba(203, 203, 203, 1);
font-family: monospace;
margin: 0;
}
.container {
height: 100vh;
max-width: 900px;
text-align: center;
margin: 0 auto;
position: relative;
}
.scramble {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 50px;
width: 100%;
margin: 0;
}
.input-section {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
text-align: center;
}
.input {
text-align: center;
height: 30px;
width: 200px;
border-radius: 10px;
font-family: monospace;
}
.buttons-box {
margin-top: 5px;
}
.button {
display: inline-block;
height: 20px;
width: 80px;
background-color: rgba(255, 255, 255, 0.2);
line-height: 20px;
font-size: 0.8em;
cursor: pointer;
}
.button:hover {
background-color: rgba(255, 255, 255, 0.3);
}
.button:active {
background-color: rgba(255, 255, 255, 0.4);
}
.notice {
display: none;
}
label {
font-size: 1.2em;
font-weight: 700;
}
.options-group {
display: inline-block;
vertical-align: top;
}
.options-box {
margin-top: 10px;
text-align: left;
background-color: rgba(255, 255, 255, 0.25);
padding: 100px 30px 20px 30px;
position: relative;
top: -400px;
z-index: -1;
min-width: 330px;
}
input {
margin-top: 10px;
}
.git-fork {
position: fixed;
top: 0;
right: 0;
border: 0;
}
.portfolio {
color: rgba(255, 255, 255, 0.5);
text-decoration: none;
position: fixed;
bottom: 0;
left: 50%;
transform: translate(-50%, 0%);
}