-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
160 lines (121 loc) · 2.28 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
* {
font-family: "Poppins";
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #121214;
}
.container{
display: flex;
}
.leftSide{
margin-left: 116px;
color: white;
}
.logoSpace{
margin: 65px 10px 10px 65px;
}
.description{
width: 85%;
margin: 150px 10px 10px 65px;
}
.description h1 {
font-size: 40px;
color: #04D361;
margin-bottom: 5px;
}
.description span{
font-size: 24px;
}
.description p{
font-size: 25px;
width: 83%;
margin-top: 10px;
}
.formContainer{
margin: 65px 10px 10px 65px;
}
.inputContainer{
display: flex;
}
.formContainer h2{
margin-bottom: 15px;
font-size: 16px;
}
input{
border-left-width: 5px;
border-left-color: #04D361;
border-radius: 5px 0px 0px 5px;
z-index: 10;
width: 25%;
padding: 10px 230px 10px 15px;
}
input[type=text] {
background-color: white;
color: black;
transition: width 0.4s ease-in-out;
}
input[type=text]:focus{
width: 100%;
outline: none;
}
.buttonForm{
border-radius: 5px;
margin-left: 3px;
width: 10%;
background-color: #8257E5;
outline: none;
}
.optional{
text-decoration: none;
color: white;
display: flex;
margin-top: 100px;
}
.optional h2 {
color: white;
text-decoration: none;
font-size: 23px;
}
.optional svg {
margin-top: 8px;
margin-left: 10px;
}
.linkDeixeme{
text-decoration: none;
display: flex;
}
.rightSide{
height: 100vh;
width: 457px;
background: #17171a url(/src/assets/banner-girl.png) no-repeat center top;
text-align: center;
flex-direction: column;
justify-content: center;
align-items: center;
}
.imgRightSide h1{
margin-top: 70px;
color: white;
font-size: 32px;
line-height: 37px;
}
.imgRightSide h2 {
color: white;
margin-top: 60px;
}
.boxesSocialNetworks{
margin-top: 50px;
display: flex;
list-style: none;
gap: 12px;
}
.socialNetworks{
margin-left: 15px;
width: 14%;
padding: 12px;
background-color: #202024;
border-radius: 5px;
}