-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (71 loc) · 1.35 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
@import url('https://fonts.googleapis.com/css?family=Roboto');
body {
font-family: 'Roboto',sans-serif;
background: url(img/mountain.jpg) no-repeat center center fixed;
background-size: cover;
}
.main-section{
margin: 0 auto;
margin-top: 130px;
padding: 0;
}
.modal-content{
background-color: #3b4652;
opacity: .90;
padding: 0 20px;
box-shadow: 0px 0px 4px #848484;
}
.user-img{
margin-top:-50px;
margin-bottom: 35px;
}
.user-img img {
height:100px;
width:100px;
border-radius:6px;
box-shadow: 0px 0px 2px #848484;
}
.form-group{
margin-bottom: 25px;
}
.form-group input {
height:42px;
border-radius: 5px;
border: 0;
font-size: 18px;
padding-left:54px;
}
.form-group::before{
font-family: 'Font Awesome\ 5 Free';
content:"\f007";
position:absolute;
font-size: 22px;
color:#555e60;
left:28px;
padding-top: 4px;
}
.form-group:last-of-type::before{
content:"\f023";
}
button{
width:40%;
margin:5px 0 25px;
}
.btn{
background-color: #27c2a5;
color:#fff;
font-size: 19px;
padding: 7px 14px;
border-radius: 5px;
border-bottom: 4px solid #219882;
}
.btn:hover,.btn:focus {
background-color: #25a890;
border-bottom:4px solid #25a890!important;
}
.forgot {
padding: 5px 0 25px;
}
.forgot a {
color:#c2fbfe;
}