-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (56 loc) · 945 Bytes
/
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
:root {
--color-1: #425F57;
--color-2: #749F82;
--color-3: #A8E890;
--color-4: #CFFF8D;
}
* {
margin: 0;
padding: 0;
}
html, body {
background: var(--color-1);
text-align: center;
direction: rtl;
}
#content {
width: 50vw;
margin: 25vh auto;
}
#content > input#uin {
background: var(--color-4);
width: 40vw;
/* color: var(--color-2); */
padding: 1rem;
font-size: 1rem;
direction: rtl;
}
h1#out {
color: var(--color-4);
font-size: 3rem;
}
button#btn {
background: var(--color-3);
padding: 1rem;
font-size: 1rem;
}
footer {
background: black;
color: white;
text-align: center;
padding: 1rem 0;
position: fixed;
bottom: 0;
width: 100%;
}
@media only screen and (max-width: 600px) {
#content {
width: 90vw;
}
#content > input#uin {
width: 80vw;
}
button#btn {
width: 87.5vw;
}
}