-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (73 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
118 lines (73 loc) · 1.36 KB
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
@import url('https://fonts.googleapis.com/css?family=Roboto');
body {
font-family: 'Roboto', sans-serif;
background: darkgray;
}
.main-section {
margin: 0 auto;
margin-top: 130px;
padding: 0;
}
.modal-content {
background-color: #3b4652;
opacity: .95;
padding: 0 18px;
box-shadow: 0px 0px 3px #848484;
}
.user-img {
margin-top: -25px;
margin-bottom: 35px;
}
.user-img img {
border-radius: 5px;
box-shadow: 0px 0px 2px #848484;
}
.form-group {
margin-bottom: 25px;
}
.form-group input {
height: 42px;
border-radius: 5px;
border: 0;
font-size: 18px;
}
.email {
margin-bottom: 15px;
}
button {
width: 40%;
margin: 5px 0 25px;
}
.btn {
background: #27c2a5;
color: #fff;
font-size: 19px;
padding: 7px 14px;
border-radius: 5px;
border-bottom: 4px solid #219882;
width: auto;
margin-bottom: 10px;
}
.btn:hover, .btn:focus {
background-color: #25a890!important;
border-bottom: 4px solid #25a890!important;
}
.svg-inline--fa {
font-size: 20px;
margin-right: 7px;
}
.forgot {
padding: 5px 0 25px;
}
.forgot a {
color: #c2fbfe;
}
@media (max-width: 576px) {
.modal-dialog {
width: 100%;
margin-top: 50%;
margin-right: auto;
margin-bottom: 1.75rem;
margin-left: auto;
}
}