-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathstylesheet.css
More file actions
82 lines (73 loc) · 1.54 KB
/
stylesheet.css
File metadata and controls
82 lines (73 loc) · 1.54 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
body {
background-color: rgba(50, 60, 60, 0.85);
color: white;
font: 14px/1.72 'Open Sans', Arial, sans-serif;
}
form {
height: 264px;
width: 272px;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
label {
display: block;
text-transform: capitalize;
margin: 14px 0 6px;
}
input[type="text", type="password"] {
height: 36px;
width: 100%;
padding: 5px 10px;
color: #000;
font-weight: normal;
border: 1px solid #ccc;
border-radius: 2px;
-webkit-box-shadow: 0 0 0 1px #fff;
box-shadow: 0 0 0 1px #fff;
outline: none;
font: 14px/1.72 'Open Sans', Arial, sans-serif;
}
input[name="password"] {
margin-bottom: 22px;
}
input[type="text", type="password"]:focus {
box-shadow: 0 0 0 1px #ffe5ac;
border-color: #ffe5ac;
}
input[type="submit"] {
width: 175px;
height: 46px;
background: 0 0;
color: #fff;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .04em;
text-align: center;
white-space: nowrap;
border: 2px solid #fff;
border-radius: 4px;
padding: 0 30px 0;
vertical-align: middle;
cursor: pointer;
-webkit-transition: all .15s ease-in;
font: 14px/1 'Open Sans', Arial, sans-serif;
}
input[type="submit"]:focus {
background: rgba(255, 255, 255, .1);
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
input[type="submit"]:active {
background-image: none;
outline: 0;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
input[type="submit"]:hover {
color: #fff;
background: rgba(255, 255, 255, .1);
}