-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
81 lines (69 loc) · 1.46 KB
/
form.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
*
{
margin: 0;
padding: 0;
}
body{
background: linear-gradient(to right, rgb(255, 0, 21), blue);
background-size: cover;
background-repeat: no-repeat;
height: 100%;
}
div.main
{
width: 400px;
margin: 100px auto 0px auto;
}
h2{
text-align: center;
padding: 20px;
font-family: "Lucida Console", "Courier New", monospace;
}
div.register
{
background-color: rgba(247, 14, 14, 0.281);
width: 100%;
font-size: 18px;
border-radius: 10px;
border: 1px solid rgba(236, 197, 24, 0.972);
box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
color: #f3f3f5;
}
form#register
{
margin: 40px;
}
label
{
font-family: "Lucida Console", "Courier New", monospace;
font-size: 15px;
font-style: italic;
}
input#name{
width: 300px;
border: 1px solid #bf0b75 ;
border-radius: 3px;
outline: 0;
padding: 7px;
background-color: #f0ec03cc;
box-shadow: inset 1px 1px 5px rgba(0,0,0,0.3);
}
input#submit{
width: 200px;
padding: 7px;
font-size: 16px;
font-family: sans-serif;
font-weight: 600;
border: none;
border-radius: 3px;
background-color: rgba(7, 2, 0, 0.8);
color: #ece6e6;
cursor: pointer;
border: 1x solid rgba(245, 237, 237, 0.3);
box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
margin-bottom: 20px;
}
label,span,h2
{
text-shadow: 1px 1px 5px rgba(172, 16, 16, 0.3);
}