-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (94 loc) · 1.66 KB
/
styles.css
File metadata and controls
107 lines (94 loc) · 1.66 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
* {
font-family: "Josefin Sans";
}
.grid-container {
display: grid;
box-sizing: content-box;
grid-template-columns: 60% 40%;
grid-gap: 0px;
background-image: url("images/bg-pattern-desktop.svg");
background-position: center;
background-size: cover;
position: relative;
height: 100vh;
}
.grid-left {
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 65%;
margin: 50px 50px 1px 80px;
padding-left: 50px;
}
.grid-right {
align-items: center;
background-size: cover;
background-repeat: no-repeat;
}
h1.top {
padding-top: 100px;
color: hsl(0, 36%, 70%);
font-weight: 300;
}
h1 {
font-weight: 600;
line-height: 0.5em;
font-size: 60px;
text-transform: uppercase;
letter-spacing: 10px;
}
p {
color: hsl(0, 36%, 70%);
line-height: 1.8;
font-size: 16px;
}
/* email bar */
.input-wrap {
width: 100%;
position: relative;
}
.input-box {
width: 100%;
position: relative;
display: flex;
}
.email {
width: 150%;
border: solid hsl(0, 36%, 70%) 1px;
border-right: none;
padding: 10px 20px 10px 23px;
height: 25px;
border-radius: 30px 0 0 30px;
outline: none;
font-size: 13px;
background: none;
}
::placeholder {
color: hsl(0, 36%, 70%);
}
input:focus,
select:focus,
button:focus {
cursor: pointer;
outline: none;
}
/* lil arrow thangy */
i {
color: #fff;
}
.submit-button {
width: 80px;
/* height: 37px; */
border: solid hsl(0, 36%, 70%) 1px;
background: linear-gradient(
68deg,
rgba(248, 191, 191, 1) 50%,
rgba(238, 140, 140, 1) 100%
);
text-align: center;
color: #fff;
border-radius: 0 30px 30px 0;
cursor: pointer;
font-size: 20px;
padding: 10px;
}