-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.scss
100 lines (88 loc) · 1.54 KB
/
App.scss
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
@import './components';
.container {
flex: 1;
padding: 20px;
flex-direction: column;
margin-top: 10%;
}
.header {
width: 200px;
height: 200px;
background-color: white;
margin: 0 auto;
&_logo {
display: block;
margin: 0 auto;
margin-bottom: 1%;
}
}
.input {
padding: 20px;
width: 350px;
height: 50px;
border-radius: 15px;
margin: 20px auto;
background-color: #f5f5f5;
}
.text {
margin: 30px;
font-weight: 700;
color: rgb(44, 44, 44);
text-align: center;
}
.buttonPink {
appearance: none;
border: none;
cursor: pointer;
display: block;
min-height: 1em;
outline: none;
text-align: center;
text-decoration: none;
user-select: none;
overflow: hidden;
line-height: 50px;
border-radius: 50px;
height: 50px;
width: 70%;
padding: 0px 35px;
font-size: 18px;
background-color: rgb(255, 63, 85);
color: rgb(255, 255, 255);
position: fixed;
bottom: 16px;
margin: 0 auto;
z-index: 999;
white-space: nowrap;
box-sizing: border-box;
}
.textWhite {
appearance: none;
border: none;
cursor: pointer;
display: block;
min-height: 1em;
outline: none;
text-align: center;
text-decoration: none;
user-select: none;
overflow: hidden;
line-height: 50px;
border-radius: 50px;
height: 50px;
padding: 0px 25px;
font-size: 18px;
color: rgb(255, 255, 255);
position: fixed;
bottom: 16px;
margin: 15px auto;
z-index: 999;
white-space: nowrap;
box-sizing: border-box;
}
.imgMain {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}