-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
132 lines (113 loc) · 1.71 KB
/
style.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
body {
font-family: Inter, Arial, Helvetica, sans-serif;
color: #fff;
}
.logo {
width: 150px;
}
.gf-text {
font-weight: 700;
letter-spacing: -3px;
font-size: 3rem;
padding-top: 20px;
}
.flow-text {
font-weight: 400;
}
.all-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.master-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin-left: auto;
margin-right: auto;
min-width: 100%;
}
html,
body {
margin: 0;
overflow: hidden;
}
h1,
p {
padding: 0;
margin: 0;
}
.gr-text {
text-transform: uppercase;
letter-spacing: 5px;
text-align: center;
font-size: 0.7rem;
}
@keyframes logo-anim {
0% {
transform: scale(1);
}
50% {
transform: scale(1.08);
}
100% {
transform: scale(1);
}
}
.logo {
animation: logo-anim 5s infinite;
}
.mail {
display: flex;
}
.input-mail {
margin-top: 30px;
background-color: #333;
border: none;
padding: 10px 15px;
margin-right: -6px;
max-width: 200%;
outline: none;
color: rgb(175, 175, 175);
box-sizing: border-box;
border-radius: 5px 0px 0px 5px;
}
.btn-mail {
background-color: rgb(46, 94, 236);
border: none;
padding: 10px;
color: #fff;
box-sizing: border-box;
border-radius: 0px 5px 5px 0px;
outline: none;
}
.btn-mail:hover {
background-color: rgb(2, 2, 236);
transition: 2s;
}
.tick {
max-width: 60%;
max-height: 60%;
}
.mail {
display: inline;
}
.cs-text {
position: absolute;
bottom: 7%;
left: 50%;
transform: translateX(-50%);
}
@keyframes loader {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.loader {
animation: loader 1s infinite;
}