forked from EdenianKnight/mindsmith-cooksite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign-up.css
More file actions
80 lines (65 loc) · 1.45 KB
/
Copy pathsign-up.css
File metadata and controls
80 lines (65 loc) · 1.45 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
.quicksand {
font-family: "Quicksand", sans-serif;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
}
body {
background-image: url('images/sign-up-background.jpg');
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
div.holder {
margin: 50px auto;
padding: 20px;
color: white;
width: 50%;
text-align: center;
border-radius: 20px;
background-color: rgba(100, 100, 100, 0.5);
}
label, button {
font-size: 20px;
font-weight: 700;
}
/* The main-form class exists so as to prevent the checkbox from having block display */
.main-form label {
display: block;
}
.main-form input {
border: 2px solid #d9d9d9;
padding: 12px;
font-size: 20px;
border-radius: 10px;
margin: 20px 0px;
width: 50%;
}
/* The Submit button */
.submit {
display: inline-block;
background-color: #00cc00;
padding: 10px;
border: 2px outset #66ff66;
outline: 2px outset white;
width: 50%;
border-radius: 10px;
font-weight: 600;
}
.submit:active {
border: 2px inset #66ff66;
outline: 2px inset white;
}
/* Website Links */
a {
color: rgb(248, 248, 154);
text-decoration: none;
}
a:hover {
color: rgb(232, 232, 8);
text-decoration: underline;
}
a:active {
color: rgb(232, 177, 13);
text-decoration: underline;
}