-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
116 lines (105 loc) · 2.18 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* ======================================================================
* COMPILED CSS FROM /style.scss
* ====================================================================== */
:root {
background: #f5f6fa;
color: #9c9c9c;
font: 1rem "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
html,
body,
.container {
height: 100%;
}
a {
color: inherit;
}
a:hover {
color: #7f8ff4;
}
.container {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.uppercase {
text-transform: none;
}
.btn {
display: inline-block;
background: transparent;
color: inherit;
font: inherit;
border: 0;
padding: 0;
-webkit-transition: all 200ms ease-in;
transition: all 200ms ease-in;
cursor: pointer;
}
.btn--primary {
background: #7f8ff4;
color: #fff;
box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
border-radius: 2px;
padding: 12px 36px;
}
.btn--primary:hover {
background: #6c7ff2;
}
.btn--primary:active {
background: #7f8ff4;
box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.2);
}
.btn--primary:focus {
background: #687af2;
outline: 0;
}
.btn--inside {
margin-left: -96px;
}
.form__field {
width: 380px;
background: #fff;
color: #a3a3a3;
font: inherit;
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
border: 0;
padding: 22px 18px;
-webkit-transition: all .4s;
transition: all .4s;
}
.form__field:hover {
background: whitesmoke;
}
.form__field:focus {
outline: 0;
background: rgba(104, 122, 242, 0.05);
}
::-webkit-input-placeholder {
color: rgba(128, 145, 241, 0.5);
}
:-moz-placeholder {
/* Firefox 18- */
color: rgba(128, 145, 241, 0.5);
}
::-moz-placeholder {
/* Firefox 19+ */
color: rgba(128, 145, 241, 0.5);
}
:-ms-input-placeholder {
color: rgba(128, 145, 241, 0.5);
}