-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
130 lines (112 loc) · 2.27 KB
/
styles.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
125
126
127
128
129
130
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family:"Poppins",sans-serif;
}
body {
font-family: 'Poppins', sans-serif;
background-image: url(login.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
margin: 0px;
}
.corner-image {
position:absolute;
top: 20px;
right: 1px;
width: 105px;
height: 65px;
}
nav {
margin-bottom: 20px;
}
nav a {
color: #06032458;
text-decoration: none;
font-weight: bold;
}
form {
width: 55%;
margin: 0 auto;
border-radius: 1%;
padding: 10px;
}
input {
width:95%;
padding: 0 0 0 45px;
outline:none;
height:45px;
margin-bottom: 10px;
border: 1px solid #1d2109a3;
border-radius: 30px;
background: rgba(255, 255, 255, 0.1);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
button {
border: 1px solid #1d2109a3;
background: rgb(76, 175, 106);
color: rgb(255, 251, 251);
padding: 15px 90px;
border: rgb(30, 6, 6);
cursor: pointer;
border-radius: 30px;
font-size: 15px;
text-align: center;
}
button:hover {
background-color: #0f175cb5;
}
a {
display: inline-block;
margin-top: 10px;
color: #3b3b1a;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.registerBtn{
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: small;
border: none;
outline: none;
border-radius: 0%;
margin: 0 auto;
padding: 10px px;
color:blue;
}
.loginhead{
width: 330px;
margin: auto;
}
header {
background-color: #1c1e58d3;
background-position: center;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-style: italic;
color: white;
text-align: center;
font-size: medium;
}
.backlogin{
padding: 3px;
border: none;
width: 300px;
margin: 0 auto;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
p {
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(16, 12, 6);
font-size: small;
}
#registrationForm{
padding:20px;
width: 200px;
}