-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregstyle.css
81 lines (69 loc) · 1.2 KB
/
regstyle.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
*{
box-sizing: border-box;
}
html{
margin: 0px;
padding: 0px;
height: 0;
}
body{
margin: 0px;
padding: 0px;
}
.header{
position: absolute;
}
.reg{
margin: 10px auto;
height: 600px;
width: 900px;
border: 2px solid #e33e4f;
background-color: #ecd4c4;
border-radius: 20px 1px 10px 1px;
box-shadow: 8px -3px 10px 5px #e0e0e0;
position: relative;
top: 110px;
}
.reg h1{
text-align: center;
font-size: 50px;
font-weight: 900;
color: darkred;
}
.rrig{
height: 400px;
width: 1000px;
position: relative;
}
.rrig tr td{
font-family: 'Source Sans Pro', sans-serif;
width: 200px;
color: #000;
}
.rrig tr td input{
height: 30px;
width: 200px;
outline: none;
font-family: 'Source Sans Pro', sans-serif;
}
.rrig form{
padding: 50px;
height: 400px;
width: 500px;
}
.rrig tr td button{
border: 0px;
background: linear-gradient(#900,#D50000);
width: 100px;
height: 30px;
border-radius: 10px 1px 10px 1px;
box-shadow: 1px 1px 5px black;
color: white;
font-weight: bold;
font-size: 14px;
text-shadow: 1px 1px 6px black;
position: static;
}
.footer{
top: 110px;
}