-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
119 lines (102 loc) · 1.83 KB
/
Copy pathindex.css
File metadata and controls
119 lines (102 loc) · 1.83 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
html, body {
max-width: 100%;
overflow-x: hidden;
}
body {
padding: 20px;
font-family: "Lucida Grande";
}
header {
border-bottom: solid #d8d8d8 0.05rem;
}
.row h1#heading {
padding-bottom: 20px;
width: auto;
height: auto;
color: #332C49;
}
input::placeholder {
color: #d8d8d8 !important;
font-size: smaller;
}
form input {
width: 100%;
border: 2px solid gray;
background: none;
position: relative;
top: 0;
left: 0;
z-index: 1;
padding: 8px 12px;
outline: 0;
}
form input:valid {
background: white;
}
form input:focus {
border-color: deeppink;
}
form input:focus ~ label {
background: deeppink;
color: white;
font-size: 70%;
padding: 1px 6px;
z-index: 2;
text-transform: uppercase;
}
form label {
transition: fadein 0.3s, color 0.3s, top 0.3s, bottom 0.3s, right 0.3s, left 0.3s;
position: absolute;
color: #999;
padding: 7px 6px;
}
form.go-right label {
top: 2px;
right: 100%;
width: 100%;
margin-right: -100%;
margin-bottom:0%;
bottom: 2px;
padding: 10px 6px 10px 6px;
position: absolute;
}
form.go-right input:focus ~ label {
right: 0;
top: 0;
margin-right: 0;
width: 30%;
height: 100%;
border-radius: 20px 5px 5px 0px;
padding: 10px 6px 10px 6px;
text-align: center;
}
.form-group.has-error input:focus ~ label {
max-height: 61%;
}
.container .row {
padding-bottom: inherit;
}
.row p {
color: darkgrey;
}
#submitButton {
height: 49px;
margin-left: 15px;
}
form .row {
border: none !important;
}
.btn-block {
background-color: deeppink !important;
border: none;
font-weight: normal;
}
#success_message{
display: none;
}
.alert-success {
text-align: center !important;
}
footer {
border-top: solid #d8d8d8 0.05rem;
}