-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (54 loc) · 905 Bytes
/
style.css
File metadata and controls
64 lines (54 loc) · 905 Bytes
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
* {
box-sizing: border-box;
}
body {
font-weight: 400;
background-color: #EEEFF4;
}
body,
html,
.App,
.vertical-center {
width: 100%;
height: 100%;
}
.navbar {
background: #1833FF !important;
width: 100%;
}
.btn-outline-primary {
border-color: #1833FF;
color: #1833FF;
}
.btn-outline-primary:hover {
background-color: #1833FF;
color: #ffffff;
}
.vertical-center {
display: flex;
text-align: left;
justify-content: center;
flex-direction: column;
}
.inner-block {
width: 450px;
margin: auto;
background: #ffffff;
box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
padding: 40px 55px 45px 55px;
transition: all .3s;
border-radius: 20px;
}
.vertical-center .form-control:focus {
border-color: #2554FF;
box-shadow: none;
}
.vertical-center h3 {
text-align: center;
margin: 0;
line-height: 1;
padding-bottom: 20px;
}
label {
font-weight: 500;
}