-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign.css
114 lines (95 loc) · 1.44 KB
/
sign.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
:root {
--white: #FFFFFF;
--grey: #AAAAAA;
--primary: #003366; /* Dark Blue */
--light: #E0F7FA; /* Light Cyan */
--dark: #002244; /* Navy Blue */
}
body {
/* background-color: var(--light); */
margin: 2em;
}
.container{
display:flex;
}
header {
margin: 5em;
}
header img {
object-fit: contain;
width: 17vw;
height: auto;
}
main {
display: flex;
justify-content: center;
}
main img {
width: 80%;
}
form,
p,
.social-sign-up {
width: 70%;
}
form h4 {
color: var(--dark);
padding-bottom: 1em;
}
.form-control {
background-color: #e5e2e9;
opacity: 0.7;
margin-bottom: 1.5em;
}
.submit-btn {
background-color: var(--primary);
color: var(--white);
width: 100%;
}
.submit-btn:hover {
background-color: var(--light);
color: var(--primary);
border: 1px solid var(--primary);
}
p {
color: var(--grey);
}
.hr-lines {
position: relative;
max-width: 500px;
margin: 50px 0;
text-align: center;
}
.hr-lines:before,
.hr-lines:after {
content: " ";
height: 2px;
width: 150px;
background: var(--grey);
display: block;
position: absolute;
top: 50%;
}
.hr-lines:before {
left: 0;
}
.hr-lines:after {
right: 0;
}
.social-sign-up button {
width: 100%;
border: 1px solid var(--dark);
}
.social-sign-up button:hover {
background: var(--primary);
color: var(--white);
}
.sign-in {
margin: 1em 0;
text-align: center;
}
@media(max-width:992px){
.left{
display: hidden;
}
}