-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathogin2.css
97 lines (94 loc) · 1.92 KB
/
ogin2.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
body {
background:#4bc970;
margin:0px;
/* font-family: 'Ubuntu', sans-serif; */
font-family: 'Nunito', sans-serif;
background-size: 100% 110%;
}
h1, h2, h3, h4, h5, h6, a {
margin:0; padding:0;
}
.login {
margin:0 auto;
max-width:500px;
}
.login-header {
padding-top: 200px;
margin-top: 50px;
color:#fff;
text-align:center;
font-size:300%;
}
/* .login-header h1 {
text-shadow: 0px 5px 15px #000; */
.login-form {
border:.5px solid #fff;
background:#4facff;
border-radius:10px;
box-shadow:0px 0px 10px #000;
}
.login-form h3 {
text-align:left;
margin-left:40px;
color:#fff;
}
.login-form {
box-sizing:border-box;
padding-top:15px;
padding-bottom:10%;
margin:5% auto;
text-align:center;
}
.login input[type="text"],
.login input[type="password"] {
max-width:400px;
width: 80%;
line-height:3em;
font-family: 'Ubuntu', sans-serif;
margin:1em 2em;
border-radius:5px;
border:2px solid #f2f2f2;
outline:none;
padding-left:10px;
}
.login-form input[type="button"] {
height:30px;
width:100px;
background:#fff;
border:1px solid #f2f2f2;
border-radius:20px;
color: slategrey;
text-transform:uppercase;
font-family: 'Ubuntu', sans-serif;
cursor:pointer;
}
.sign-up{
color:#f2f2f2;
margin-left:-70%;
cursor:pointer;
text-decoration:underline;
}
.no-access {
color:#E86850;
margin:20px 0px 20px -57%;
text-decoration:underline;
cursor:pointer;
}
.try-again {
color:#f2f2f2;
text-decoration:underline;
cursor:pointer;
}
/*Media Querie*/
@media only screen and (min-width : 150px) and (max-width : 530px){
.login-form h3 {
text-align:center;
margin:0;
}
.sign-up, .no-access {
margin:10px 0;
}
.login-button {
margin-bottom:10px;
}
}