forked from Shivangi-ch/basic_auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (75 loc) · 1.45 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
* {
margin: 0px;
padding: 0px;
}
body {
font-size: 12px;
background: rgb(247, 247, 247);
font-family: Arial, Helvetica, sans-serif;
}
.header {
width: 40vh;
margin: 50px auto 0px;
color: rgb(255, 255, 255);
background: #5F9EA0;
text-align: center;
border: 1px solid #B0C4DE;
border-bottom: none;
border-radius: 10px 10px 0px 0px;
padding: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
form, .content {
width: 40vh;
margin: 0px auto;
padding: 20px;
border: 1px solid #B0C4DE;
background: rgb(247, 247, 247);
border-radius: 0px 0px 10px 10px;
/* height: 70vh; */
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.input-group {
margin: 10px 0px 10px 0px;
height: 8vh;
}
.input-group label {
display: block;
text-align: left;
margin: 3px;
}
.input-group input {
height: 3vh;
width: 93%;
padding: 5px 10px;
font-size: 16px;
border-radius: 5px;
border: 1px solid gray;
}
.input-group input:hover {
border: 2px solid rgb(0, 151, 151);
}
.btn {
padding: 10px;
font-size: 15px;
color: white;
background: #5F9EA0;
border: none;
border-radius: 5px;
}
.error {
width: 92%;
margin: 0px auto;
padding: 10px;
border: 1px solid #a94442;
color: #a94442;
background: #f2dede;
border-radius: 5px;
text-align: left;
}
.success {
color: #3c763d;
background: #dff0d8;
border: 1px solid #3c763d;
margin-bottom: 20px;
}