-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (99 loc) · 1.82 KB
/
style.css
File metadata and controls
129 lines (99 loc) · 1.82 KB
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
*{
margin: 0;
padding: 0;
}
body{
font-family: 'Courier New', Courier, monospace;
margin-top: 40px;
}
.sec2{
width: 800px;
margin:auto;
padding: 10px 0px 10px 0px;
text-align: right;
}
.rform{
width: 800px;
font-size: 25px;
margin:auto;
color: slateblue;
padding: 10px 0px 10px 0px;
text-align: right;
}
.im{
display: flex;
justify-content: flex-end;
align-items: center;
position: fixed;
height: 100%;
left: 0;
bottom: 0;
width: 700px;
z-index: -1;
}
form{
padding: 10px;
}
#name{
width: 100%;
height: 100px;
}
.name{
margin-left: 20px;
margin-top: 30px;
font-size: 30px;
font-weight:700 ;
}
/* .fname{
position: relative;
left: 200px;
top: -37px;
line-height: 40px;
border-radius: 6px;
padding: 0 22px;
font-size: 16px;
} */
input{
font-size: 20px;
border-radius: 6px;
left: 200px;
top: -37px;
padding: 10px 10px;
}
button{
font-size: 18px;
border-radius: 8px;
text-align: center;
/* padding: 10px 10px; */
background-color:slateblue;
display: inline-block;
border: none;
color: #FFFFFF;
font-size: 20px;
padding: 20px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
button span {
cursor: pointer;
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: 25px;
}
button:hover span:after {
opacity: 1;
right: 0;
}