forked from cmcnulty/SuperGenPass
-
Notifications
You must be signed in to change notification settings - Fork 50
/
style.css
124 lines (124 loc) · 2.09 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
* {
box-sizing: border-box;
}
*:focus {
outline: none;
}
body {
font-family: Arial;
background-color: #3498DB;
padding: 50px;
}
.login {
margin: 20px auto;
width: 300px;
}
.login-screen {
background-color: #FFF;
padding: 20px;
border-radius: 5px
}
.app-title {
text-align: center;
color: #777;
font-size: 12px;
text-transform: uppercase;
font-family: courier;
}
.login-form {
text-align: center;
}
.control-group {
margin-bottom: 10px;
}
#outputInfo {
color: red;
font-family: arial;
font-size: 11px;
}
#outputPassword {
background-color: #ff9;
}
.tt-dropdown-menu {
background-color: #ECF0F1;
border: 1px solid #3498DB;
text-align: left;
width: 250px;
padding: 0 0 0 10px;
font-size: 15px;
}
input {
text-align: center;
background-color: #ECF0F1;
border: 2px solid transparent;
border-radius: 3px;
font-size: 16px;
font-weight: 200;
padding: 10px 0;
width: 250px;
transition: border .5s;
}
input:focus {
border: 2px solid #3498DB;
box-shadow: none;
}
.btn {
border: 2px solid transparent;
background: #3498DB;
color: #ffffff;
font-size: 16px;
line-height: 25px;
padding: 10px 0;
text-decoration: none;
text-shadow: none;
border-radius: 3px;
box-shadow: none;
transition: 0.25s;
display: block;
width: 250px;
margin: 0 auto;
}
.btn:hover {
background-color: #2980B9;
}
.help {
padding: 10px 0;
}
.left {
float: left;
}
.right {
float: right;
}
.login-link {
font-size: 12px;
color: #444;
display: block;
}
#info {
display: none;
margin: 10px 0;
}
#info.active {
display: block;
}
h2,
h3 {
font-family: courier;
font-size: 16px;
color: #444;
}
p {
font-size: 14px;
color: #666;
}
#modal-footer {
text-align: center;
background-color: yellow;
color: black;
}
.credit {
font-family: arial;
font-size: 10px;
line-height: 16px;
}