This repository was archived by the owner on May 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
115 lines (98 loc) · 1.79 KB
/
index.css
File metadata and controls
115 lines (98 loc) · 1.79 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
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
h2 {
margin: 1rem 0 1.5rem;
}
body {
background-color: #68ded2;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
form {
background-color: white;
width: 400px;
margin: auto;
margin-top: 2rem;
border-radius: 6px;
-webkit-box-shadow: 0px 10px 54px -2px rgba(0,0,0,0.36);
-moz-box-shadow: 0px 10px 54px -2px rgba(0,0,0,0.36);
box-shadow: 0px 10px 54px -2px rgba(0,0,0,0.36);
padding: 2rem;
}
input {
color: #424040;
font-weight: bold;
padding: 0.5rem;
font-size: 1rem;
border-radius: 4px;
border: solid 1px #ccc;
width: 100%;
}
input.Error {
border-color: #f74d7d;
}
input:hover,
input:active,
input:focus {
outline: solid 2px #5295e3;
}
.ValidatedField {
margin-bottom: 1.5rem;
}
.ValidatedField label {
display: block;
color: #ccc;
font-weight: 100;
text-transform: uppercase;
font-size: 0.8rem;
margin-bottom: 0.4rem;
}
.ValidatedField ul {
color: #f74d7d;
font-size: 0.9rem;
}
button {
width: 50%;
}
.Save,
.Reset {
background-color: #68ded2;
padding: 1rem;
color: white;
text-transform: uppercase;
border: none;
border-radius: 4px;
font-weight: bold;
font-size: 0.8rem;
border: solid 2px #68ded2;
}
.Save[disabled] {
background-color: #d3dedd !important;
color: white !important;
border-color: #d3dedd !important;
cursor: not-allowed !important;
}
.Save:hover,
.Reset:hover {
background-color: #58B8AE;
border-color: #58B8AE;
cursor: pointer;
}
.Save:active,
.Reset:hover {
background-color: #44918A;
border-color: #44918A;
}
.Save,
.Reset {
width: 47%;
}
.ButtonRow {
display: flex;
justify-content: space-between;
}