-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (36 loc) · 823 Bytes
/
styles.css
File metadata and controls
40 lines (36 loc) · 823 Bytes
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
.grad-background{
position: fixed;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
z-index: -10;
animation-duration: 10s;
animation-name: example;
animation-iteration-count: infinite;
}
.mainbody{
margin-top: 10%;
}
input{
font-size: 2em !important;
}
@keyframes example {
0% {background-color:#fb9730;}
50% {background-color: #6A1B9A;}
100% {background-color: #fb9730;}
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type=number] {
-moz-appearance:textfield;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
-webkit-box-shadow: 0 0 0 30px white inset !important;
}