-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (117 loc) · 1.83 KB
/
style.css
File metadata and controls
120 lines (117 loc) · 1.83 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
117
118
119
120
* {
margin: 0;
padding: 0;
}
body {
padding: 20px;
background-image: url(/images/bg-intro-desktop.png);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: hsl(0, 100%, 74%);
}
.container {
display: flex;
height: 90vh;
align-items: center;
margin: auto;
width: 80%;
justify-content: space-between;
}
.left-column {
/* border: 2px solid black; */
width: 45%;
padding: 20px;
}
h1 {
font-size: 3rem;
margin-bottom: 20px;
color: white;
}
.left-txt {
color: white;
}
.top-right {
background-color: hsl(248, 32%, 49%);
text-align: center;
padding: 10px 0;
margin-bottom: 10px;
border-radius: 10px;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.675);
}
.right-txt {
color: white;
}
.bold-right {
font-weight: bold;
}
.right-container {
/* border: 2px solid red; */
width: 45%;
}
.right-column {
background: rgb(207, 227, 245);
padding: 2rem;
border-radius: 10px;
}
form {
width: 80%;
margin: auto;
}
input {
width: 100%;
height: 40px;
text-indent: 20px;
outline: none;
border-radius: 10px;
border: 0.5px solid grey;
}
.error {
color: red;
display: none;
}
.thankyou {
display: none;
}
button {
width: 100%;
text-align: center;
padding: 10px 0;
background-color: hsl(154, 59%, 51%);
color: white;
margin-top: 10px;
border: none;
border-radius: 10px;
cursor: pointer;
}
.field {
margin-top: 10px;
}
.terms {
font-size: 10px;
text-align: center;
color: grey;
margin-top: 5px;
}
.terms-2 {
color: red;
font-weight: bold;
}
@media only screen and (max-width: 500px) {
body {
background-image: url(./images/bg-intro-mobile.png);
padding: 5px 0;
}
.container {
flex-direction: column;
}
.left-column {
width: 100%;
}
.right-container {
width: 100%;
}
form {
width: 95%;
}
}