-
Notifications
You must be signed in to change notification settings - Fork 0
/
style2.css
102 lines (101 loc) · 1.83 KB
/
style2.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
body {
background: rgb(214, 214, 214);
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}
.container {
width: 1000px;
height: 600px;
margin: 30px auto;
display: flex;
background: rgb(214, 214, 214);
border-radius: 10px;
box-shadow: 5px 5px 7px gray, -5px -5px 7px gray;
}
.login {
width: 500px;
}
form {
width: 230px;
margin: 40px auto;
}
.para-2 {
text-align: center;
color: purple;
font-size: 15px;
margin-top: -10px;
}
form h1 {
text-align: center;
text-transform: uppercase;
font-weight: bolder;
}
p {
text-align: center;
}
form label {
display: block;
font-size: 16px;
font-weight: 600;
padding: 8px;
}
input {
width: 100%;
padding: 8px;
margin: 8px;
outline: none;
border: none;
border: 1px solid gray;
border-radius: 5px;
}
button {
width: 250px;
margin: 8px;
padding: 8px;
background: purple;
outline: none;
border: none;
border-radius: 20px;
color: white;
font-size: 17px;
cursor: pointer;
transition: 0.5s;
}
button span {
display: inline-block;
position: relative;
transition: 0.5s;
}
button span:after {
content: "\00bb";
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
button:hover span {
padding-right: 30px;
}
button:hover span:after {
opacity: 1;
right: 0;
}
p a {
text-decoration: none;
color: black;
}
hr {
border-top: 2px solid purple;
}
.pic {
width: 75%;
background: violet;
}
.pic img {
width: 400px;
margin: 70px 0 0 100px;
}
img:hover {
padding: 3px;
cursor: pointer;
}