-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (69 loc) · 1.26 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
#wrapper {
width: 35vw;
margin: 2em auto;
}
#footer {
position: relative;
bottom: 0;
top: 10em;
left: 50%;
}
p {
text-align: center;
position: relative;
left: -50%
}
#username {
border: 0;
}
#username:hover {
border-bottom: 1px grey;
}
#resetApp:hover {
text-decoration: underline;
cursor: pointer;
color: red;
}
input[id="username"] {
width: 30%;
}
span.p-centered {
margin-right: -40px;
}
#message {
visibility: visible;
height: 3em;
}
.input_shake {
animation: kf_shake 0.4s 1 linear;
}
@keyframes kf_shake {
0% { -webkit-transform: translate(30px); }
20% { -webkit-transform: translate(-30px); }
40% { -webkit-transform: translate(15px); }
60% { -webkit-transform: translate(-15px); }
80% { -webkit-transform: translate(8px); }
100% { -webkit-transform: translate(0px); }
}
@media screen and (max-width: 780px) {
* {
font-size: small;
}
#wrapper {
width: 80vw;
margin: 3em auto;
}
input[id="username"] {
width: 25%;
font-size: smaller;
}
span.p-centered {
margin-right: -10px;
}
#footer {
position: relative;
bottom: 0;
top: 5em;
left: 50%;
}
}