-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmforms.css
62 lines (62 loc) · 1.22 KB
/
admforms.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
*{
margin: 0;
padding: 0;
}
body{
background: url(bg4.jpg);
background-size: 150%;
background-position: -400px 0px;
}
.main{
width: 500px;
margin: 150px auto 0px auto;
}
h2{
text-align: center;
padding: 20px;
font-family: sans-serif;
}
.register{
background-color: rgba(255, 118, 118, 0.5);
width: 100%;
font-size: 18px;
border-radius: 10px;
border: 1px solid rgba(7, 197, 255, 0.3);
box-shadow: 2px 2px 15px rgba(96, 209, 139, 0.3);
color: rgb(184, 74, 74);
}
form#register{
margin: 40px;
}
label{
font-family: sans-serif;
font-size: 18px;
font-style: italic;
}
input#name{
width: 300px;
border: 1px solid #ddd;
border-radius: 3px;
outline: 0;
padding: 7px;
background-color: #fff;
box-shadow: inset 1px 1px 5px
rgba(0,0,0,0.3);
}
input#submit{
width: 200px;
padding: 7px;
font-family: sans-serif;
font-size: 16px;
font-weight: 600;
border-radius: 3px;
background-color: rgba(250,100,0,0.8);
color: #fff;
cursor: pointer;
border: 1px solid rgba(255,255,255,0.3);
box-shadow: 1px 5px 5px rgba(0,0,0,0.3);
margin-bottom: 20px;
}
label,span,h2{
text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}