forked from bypassiwastaken/skebstore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (95 loc) · 1.51 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
* {
font-family: "Noto sans", sans-serif;
box-sizing: border-box;
}
body {
padding: 8px;
background: #212121;
color: #ffffff;
}
input {
height: 40px;
border: 0px solid gray;
border-radius: 15px;
width: 325px;
background: #323232;
display: table-cell;
text-align: center;
color: #FFF;
font-size: 17px;
padding-left: 10px;
padding-right: 10px;
}
button {
height: 40px;
border: 0px solid gray;
border-radius: 15px;
width: 80px;
background: #434343;
display: table-cell;
text-align: center;
color: #777;
font-size: 17px;
}
.input-area {
display: flex;
gap: 10px;
}
p {
color: #777;
font-size: 17px;
}
.error {
color: #FF0000;
font-weight: bold;
}
.top-left {
position: fixed;
top: 0px;
left: 0px;
padding: 20px;
}
.name {
font-size: 22px;
}
.version {
font: bold 14px monospace;
}
.top-right {
position: fixed;
top: 10px;
right: 0px;
padding: 5px 10px;
display: flex;
gap: 15px;
}
.center {
position: fixed;
top: 50%;
left: 50%;
width: 500px;
display: flex;
flex-direction: column;
gap: 20px;
text-align: center;
transform: translate(-50%, -50%);
align-items: center;
}
svg {
color: white;
filter: brightness(0) invert(1);
margin: 1px;
width: 30px;
height: 30px;
cursor: pointer;
transition: transform 250ms;
}
svg:hover {
transform: scale(1.2);
}
#move {
cursor: move;
}
::placeholder {
color: #777;
}