-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (59 loc) · 1.28 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
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300&display=swap');
*{ outline: none; font-family: Oxygen; color: black; }
a{ cursor: pointer; }
body{
display: grid;
place-items: center;
text-align: center;
font-family: 'Oxygen' !important; overflow: none !important; background-color: #979797; overflow-x: hidden; overflow-y: hidden;
}
input, select, .inp {
border: none;
border-bottom: 1px solid black;
background:none !important;
padding: 10px;
margin:10px;
width: 100%;
text-align: center;
}
img{
-khtml-user-select: none;
-o-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
button, input[type="submit"], .button {
border: none;
background-color: gray;
border-radius: 10px;
padding: 10px;
padding-right: 15px;
padding-left: 15px;
margin:10px;
width: 100%;
text-align: center;
cursor: pointer;
min-width: fit-content;
}
#prev button {
width: 90%;
}
@media screen and (max-width: 1100px) {
#menu{
width: 30%;
}
#upload{
width: 30%;
}
#prev{
width: 30%;
}
}
img {
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-select: none;
}