-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (79 loc) · 1.8 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
body {
padding: 2rem 1rem;
overflow-x: hidden;
background: center/cover url(../img/bg.png);
font: 700 1.2rem "Jura", sans-serif;
background: linear-gradient(63deg, #999 23%, transparent 23%) 0.44rem 0,
linear-gradient(63deg, transparent 74%, #999 78%),
linear-gradient(63deg, transparent 34%, #999 38%, #999 58%, transparent 62%),
#444;
background-size: 1rem 3rem;
}
.converter {
background-color: #999999de;
margin-bottom: 2rem;
padding: 1.3rem 2rem 2rem;
border: 0.1rem solid #808080;
}
input {
padding: 0.2rem;
font-size: 1.1rem;
outline: none;
border-radius: 0.1rem;
width: 20rem;
text-indent: 0.2rem;
background-color: #fdfdfd;
}
input:focus {
background-color: #f1f1f1;
}
footer {
background-color: #999999de;
border: 0.1rem solid #808080;
}
.footer-link:hover {
transition: 0.3s ease;
color: #cdd4df;
}
#loadingDiv {
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
width: 100vw;
height: 100vh;
position: absolute;
background-color: #535353;
}
.loader {
width: 3.6rem;
height: 3.6rem;
background: center / contain no-repeat url(../img/loader.gif);
}
::selection {
color: #fdfdfd;
background-color: #444;
}
button {
padding: 10px;
font-size: 1.2em;
color: #180101;
width: 100px;
height: 50px;
border-radius: 2px;
outline: none;
margin-top: 3px;
margin-left: 590px;
}
@media screen and (max-width: 450px) {
html {
font-size: 13px;
}
}
@media screen and (max-width: 350px) {
html {
font-size: 11px;
}
}