-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
70 lines (61 loc) · 1.24 KB
/
styles.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
* {
margin: 0;
padding: 0;
}
body {
background: url("images/carpool.png");
background-size: cover;
background-repeat: no-repeat;
}
div.main {
width: 400px;
margin: 100px auto 0 auto;
}
h2 {
text-align: center;
padding: 20px;
font-family: sans-serif;
}
div.register {
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
font-size: 18px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
color: #fff;
}
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#Register {
width: 200px;
padding: 7px;
font-size: 16px;
font-family: sans-serif;
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 1px 5px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
}
label, span, h2 {
text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}