-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.css
90 lines (89 loc) · 1.6 KB
/
login.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
*{
padding: 0;
margin: 0;
font-family: 'Courier New', Courier, monospace;
box-sizing: border-box;
}
Navigation Section
.nav{
height: 0;
width: 100%;
background-position: center;
background-size: cover;
}
.logo{
color: white;
font-size: 25px;
letter-spacing: 1px;
cursor: pointer;
}
span{
color: blue;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 45px;
padding-left: 8%;
padding-right: 8%;
}
nav ul li{
list-style-type: none;
display: inline-block;
padding: 10px 25px;
}
nav ul li a{
color: white;
text-decoration: none;
text-transform: capitalize;
font-weight: bold;
}
nav ul li a:hover{
color: blue;
transition: 0.5s;
transform: scale(1.5);
}
Login Section
.textfield{
align-items: center;
justify-content: space-between;
width: 100%;
height: 100vh;
padding-top: 45px;
padding-left: 8%;
padding-right: 8%;
}
.button{
background-color: blue;
color: white;
text-decoration: none;
font-size: 20px;
font-weight: bold;
border: 15px solid transparent;
padding: 0;
border-radius: 15px;
}
a.btn{
color: white;
background-color: blue;
}
.login{
height: 100vh;
width: 100%;
background-color: black;
background-position: center;
background-size: cover;
}
h3{
color: white;
margin-bottom: 50px;
font-size: 25px;
display: flex;
text-align: center;
align-items: center;
justify-content: space-between;
padding-top: 45px;
padding-left: 8%;
padding-right: 8%;
}