-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
141 lines (116 loc) · 2.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
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
131
132
133
134
135
136
137
138
139
140
141
body{
background: url(background.png)
no-repeat center center fixed;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.div1{
width: 20rem;
background: rgba(0, 0, 0, 0.466);
border: 2rem solid rgb(114, 244, 248);
border-radius: 30px;
padding: 30px;
margin: 20px auto;
}
.div1 form{
text-align: center;
}
.div1 input[type="email"] , .div1 input[type="password"]{
width: 250px;
height: 50px;
text-align: center;
border: 5px solid silver;
border-radius: 2rem;
transition: 0.25s;
outline: none;
}
.p1 a{
color: white;
text-align: start;
}
.p1{
text-transform: lowercase;
color: white;
}
.p2 a{
color: blue;
text-align: start;
text-transform: uppercase;
}
.p2{
text-transform: uppercase;
color: white;
}
.div1 input[type = "submit"]{
width: 130px;
height: 40px;
border: 5px solid silver;
border-radius: 2rem;
outline: none;
cursor: pointer;
transition: 0.25s;
}
.div1 hr{
border: 10px solid rgb(114, 244, 248);
border-radius: 3%;
}
.div1 input[type="email"]:focus , .div1 input[type="password"]:focus {
width: 300px;
border-color: blue;
}
.div1 input[type = "submit"]:hover{
width: 150px;
background-color: blue;
}
.div1 h1{
color: white;
}
/* For Signup page*/
.div2{
width: 20rem;
background: rgba(0, 0, 0, 0.466);
border: 2rem solid rgb(114, 244, 248);
border-radius: 30px;
padding: 30px;
text-align: center;
margin: 20px auto;
}
.div2 input[type="email"] , .div2 input[type="password"],.div2 input[type="number"] , .div2 input[type="text"]{
width: 200px;
height: 20px;
text-align: center;
border: 5px solid silver;
border-radius: 2rem;
transition: 0.25s;
outline: none;
}
.div2 input[type="email"]:focus , .div2 input[type="password"]:focus , .div2 input[type="number"]:focus , .div2 input[type="text"]:focus {
width: 250px;
border-color: blue;
}
.div2 input[type ="submit"]{
width: 130px;
height: 40px;
border: 5px solid silver;
border-radius: 2rem;
outline: none;
cursor: pointer;
transition: 0.25s;
}
.div2 input[type ="submit"]:hover{
width: 150px;
background-color: blue;
}
.p3{
font-size: 2rem;
text-transform: lowercase;
color: white;
}
.p4 a{
color: blue;
text-align: start;
text-transform: uppercase;
}
.p4{
text-transform: uppercase;
color: white;
}