forked from J3ranch/J3ranch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.css
139 lines (115 loc) · 2.55 KB
/
login.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@import url("https://fonts.googleapis.com/css?family=Economica:400,700|Open+Sans");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
font-family: "Economica", sans-serif;
}
.login-container {
width: 300px;
height: 400px;
margin: 150px 0 0 0;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.logo-name, .logo-image, .login-field-container, .login-button-container {
display: flex;
justify-content: center;
}
.login-field-container {
height: 70px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.login-buttons {
width: 170px;
display: flex;
justify-content: space-between;
}
.input-field {
/* border-radius: 50px; */
border: 1px solid darkgray;
padding: 7px 15px 5px 15px;
box-shadow: 0px 1px 3px 1px #0000003f;
transition: background-color 0.3s;
}
.input-field::placeholder {
text-transform: uppercase;
}
.input-field:hover {
background-color: lightgray;
transition: background-color 0.3s;
}
.input-field:focus {
border: 1px solid rgb(39, 95, 199);
background: rgba(39, 95, 199, 0.144);
outline: none;
}
.button {
padding: 7px 10px 6px 10px;
box-shadow: 0px 1px 3px 1px #0000003f;
/* border-radius: 25px; */
}
.signup-button {
border: 1px solid rgb(39, 95, 199);
background-color: transparent;
color: rgb(39, 95, 199);
transition: background-color 0.3s;
}
.signup-button:hover {
background-color: cornflowerblue;
color: white;
transition: background-color 0.3s;
}
.login-button {
background-color: limegreen;
border: 1px solid #1b881b;
color: white;
transition: background-color 0.3s, border-color 0.3s;
}
.login-button:hover {
background-color: #27a727;
border-color: #1b881b;
transition: background-color 0.3s, border-color 0.3s;
}
.logo-name {
font-size: 2em;
}
.logo-image {
border-radius: 50%;
border: 1px solid darkgray;
width: 100px;
height: 100px;
margin: 0 auto;
}
.error-message-container {
padding: 10px 15px;
border: 1px solid #B6232A;
background-color: #EFC6C3;
color: #B6232A;
text-align: center;
display: none;
}
.error, .error:focus {
border: 1px solid #B6232A;
background-color: #EFC6C3;
}
.alt-login-options {
display: flex;
justify-content: center;
border-top: 1px solid gray;
}
.google {
width: 36px;
margin: 8px 5px 0 5px;
}
.facebook, .twitter {
width: 40px;
margin: 8px 5px 0 5px;
}