-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (62 loc) · 1.29 KB
/
style.css
File metadata and controls
73 lines (62 loc) · 1.29 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
@charset "utf-8";
@import url(http://weloveiconfonts.com/api/?family=fontawesome);
[class*="fontawesome-"]:before {
font-family: 'FontAwesome', sans-serif;
}
body {
background: white;
color: black;
font: 87.5%/1.5em 'Open Sans', sans-serif;
margin: 0;
}
p {
line-height: 1.5em;
}
after { clear: both; }
.login {
margin: 50px auto;
width: 320px;
}
.login form {
margin: auto;
padding: 22px 22px 22px 22px;
width: 100%;
border-radius: 5px;
background: #fff ;
border-top: 3px solid #fff;
border-bottom: 3px solid #fff;
}
.login form span {
background-color: #fff;
border-radius: 3px 0px 0px 3px;
border-right: 3px solid #fff;
color: #606468;
display: block;
float: left;
line-height: 50px;
text-align: center;
width: 50px;
height: 50px;
}
.login form input {
background-color: #fff;
border-radius: 0px 3px 3px 0px;
color: #000;
margin-bottom: 1em;
padding: 0 16px;
width: 90%;
height: 50px;
}
.login form input[type="submit"] {
background: #b5cd60;
border: 0;
width: 100%;
height: 40px;
border-radius: 3px;
color: white;
cursor: pointer;
transition: background 0.3s ease-in-out;
}
#login form input[type="submit"]:hover {
background: #16aa56;
}