-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (81 loc) · 1.82 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
90
91
92
93
94
body {
background-color: #343434;
font-family: "Noto Sans", sans-serif;
}
.form input {
padding: 20px 0 10px;
}
/* Hide number input arrow */
.form input::-webkit-outer-spin-button,
.form input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
/* Remove autocomplete box */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
-webkit-box-shadow: 0 0 0 30px gray inset !important;
padding-left: 10px;
}
.form input,
.form textarea {
border-top: none;
border-right: none;
border-left: none;
border-bottom: 1px solid #adb5bd;
background-color: #343434;
color: #fff;
outline: none;
width: 350px;
font-family: "Noto Sans", sans-serif;
font-size: 16px;
transition: all 0.3s;
cursor: pointer;
}
.form input::placeholder,
.form textarea::placeholder {
color: #adb5bd;
font-size: 16px;
font-size: 16px;
font-family: "Noto Sans", sans-serif;
transition: all 0.3s;
}
.form textarea {
padding: 10px 0;
resize: none;
overflow: hidden;
}
.form input:focus,
.form textarea:focus {
border-bottom: 1px solid #007fff;
padding-left: 10px;
}
.form input:focus::placeholder,
.form textarea:focus::placeholder {
color: #0080ffee;
}
#btn-submit,
#btn-reset {
padding: 10px 25px;
font-size: 16px;
font-family: "Noto Sans", sans-serif;
border: none;
border-radius: 3px;
transition: all 0.3s;
}
#btn-submit {
color: #fff;
background-color: #007fff;
margin-right: 10px;
}
#btn-submit:hover {
background-color: #fff;
color: #007fff;
cursor: pointer;
}
#btn-reset:hover {
color: #fff;
background-color: #007fff;
cursor: pointer;
}