-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
154 lines (129 loc) · 2.14 KB
/
main.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
body {
width:100%;
height: auto;
overflow-x: hidden;
background-color: #eceef1;
font-family: 'Open Sans', sans-serif;
}
.signinContainer {
width: 100%;
padding-left: 73%;
height: 60px;
display: flex;
}
.footer {
width: 70%;
margin: 0px 15% 0px 15%;
height: 99px;
font-size: smaller;
text-align: center
}
.signinText {
font-size: small;
}
.signinText a{
color: rgb(0, 119, 197);
text-decoration: none;
}
.signinContainer button {
background-color: rgb(0, 119, 197);
width: 102px;
height: 34px;
margin: 20px 0px 0 15px;
border-color: #7d7a7ac4;
color: white;
border-radius: 2px;
}
.signinContainer button i {
padding-right: 5px;
}
.footer.link-container {
display: flex;
}
.footer a {
color: initial;
text-decoration:none;
margin-left: 4px;
}
.form-container{
width: 380px;
height: auto;
margin: 50px auto;
text-align: center;
color: #4C4C4C;
font-size: 0.85em;
}
.logo{
width: 118px;
height: 75px;
margin-left: 35%;
}
.logo img{
width: 100%;
}
.navbar{
display: flex;
}
.navbar img {
width: 28px;
height: 28px;
margin-left: 30px;
margin-bottom: 20px;
}
form{
background-color: #ffffff;
border: #ddd solid 1px;
padding: 20px;
}
.form-body label {
cursor: pointer;
font-weight: 400;
font-size: 1em;
text-align: left;
}
.form-body input{
border: 1px solid #c6c9cc;
border-radius: 5px;
color: #888;
display: block;
margin: 0 auto;
margin-bottom: 20px;
padding: 5px 8px;
border-radius: 3px;
width: 100%;
height: 30px;
}
.form-body input{
width: 80%;
}
.form-body select {
height: 34px;
width: 60px;
}
.btn-default {
border: 0;
background: #071cda;
padding: 11px 100px;
font-size: 14px;
color: #ffffff;
border-radius: 5px;
}
.btn-default:hover {
background: #071cdae1;
}
.recaptcha{
font-weight: 300;
}
.form-body button {
background-color: rgb(0, 119, 197);
}
@media only screen and (max-width: 1100px) {
.signinContainer {
padding-left: 60%;
}
}
@media only screen and (max-width: 770px) {
.signinContainer {
display: none;
}
}