-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (95 loc) · 1.62 KB
/
style.css
File metadata and controls
116 lines (95 loc) · 1.62 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
html,
body {
background: url(headerimage1.jpg) no-repeat center center fixed;
background-size: cover;
height: 100%;
width: 100%;
font-family: 'Montserrat', sans-serif;
}
hr {
margin: 20px auto;
color: #F05F44;
border: 3px solid #F05F44;
max-width: 65px;
opacity: 1;
}
h1 {
font-size: 3rem;
color: #e2dbdb;
}
.buffer {
height: 10rem;
}
.btn {
font-weight: 700;
text-transform: uppercase;
border-radius: 300px;
}
.btn-primary {
background-color: #F05F44;
border-color: #F05F44;
--bs-btn-hover-bg: #d44108;
--bs-btn-hover-border-color: #d44108;
}
.btn-primary:hover {
background-color: #d44108;
border-color: #d44108;
cursor: pointer;
}
.btn-xl {
padding: 1rem 2rem;
}
/* Sign Up Form*/
.form, .thank-you-container {
width: 95%;
max-width: 650px;
margin: 0 auto;
background-color: #ffffff;
color: #252525;
padding: 2rem 4rem;
border-radius: 1rem;
}
.form h2 {
font-weight: 600;
text-transform: uppercase;
}
.form h2, p, input {
width: 100%;
}
.form input {
border: 1px solid #808080;
border-radius: 0.25rem;
}
.form .text,
.form .email {
padding: 0.25rem 0.5rem;
}
.form-content-container {
display: flex;
flex-direction: column;
gap: 1rem;
}
.form .button {
border-radius: 3rem;
width: unset;
border: none;
}
.form small {
display: block;
margin-top: 1.25rem;
font-size: 0.75rem;
}
/* Thank You Page*/
.thank-you-container h1 {
font-weight: 600;
color: #252525;
margin-bottom: 1.5rem;
}
@media screen and (max-width: 500px) {
.form, .thank-you-container {
padding: 1.5rem;
}
.form {
margin: 12rem auto 2rem auto;
}
}