-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
162 lines (145 loc) · 2.85 KB
/
App.css
File metadata and controls
162 lines (145 loc) · 2.85 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
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
161
162
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.gradient-background {
background: linear-gradient(
29deg,
rgba(109, 40, 217, 0.1) 0%,
rgba(255, 255, 255, 0.5) 20%,
rgba(255, 255, 255, 0) 23%
),
linear-gradient(
305deg,
rgba(29, 78, 216, 0.1) 0%,
rgba(255, 255, 255, 0.5) 25.5%,
rgba(255, 255, 255, 0) 26.5%
);
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.App {
text-align: center;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
color: #000000;
}
.App.vertical-center{
justify-content: center;
}
.App-header {
margin-bottom: 1em;
font-size: 14px;
}
.App-header p {
margin: 0;
color: #14B8A6;
text-transform: uppercase;
font-size: 12px;
font-weight: 500;
}
.App-wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #F9FAFB;
border: 2px solid #E5E7EB;
border-radius: 12px;
overflow: hidden;
max-width: 730px;
margin: 0.5em;
}
.App-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1em;
width: 100%;
}
.App-description {
padding: 1em 1.5em;
background: #FFFFFF;
border-top: 2px solid #E5E7EB;
color: #000000;
font-size: 14px;
}
.App-link {
color: #1D4ED8;
}
.ToggleBot-message {
position: relative;
color: #1D4ED8;
background-color: #FFFFFF;
border: 2px solid #1D4ED8;
border-radius: 6px;
padding: 1.2em;
font-size: 20px;
margin-bottom: 1em;
}
.ToggleBot-message:after {
content: ' ';
position: absolute;
height: 30px;
width: 30px;
transform: rotate(45deg);
left: calc(50% - 15px);
bottom: -17px;
background-color: #FFFFFF;
border: 2px solid transparent;
border-right-color: #1D4ED8;
border-bottom-color: #1D4ED8;
}
.ToggleBot-logo {
height: 200px;
margin: 2em 1em;
pointer-events: none;
}
.ToggleBot-variation {
width: 80%;
margin-top: 1em;
padding: 1em;
color: #FFFFFF;
background: linear-gradient(270deg, #071746 0%, #111827 100%);
border-radius: 8px;
font-size: 14px;
}
@media (prefers-reduced-motion: no-preference) {
.spin-slow {
animation: Spin infinite 5s linear;
}
.spin-fast {
animation: Spin infinite 1s linear;
}
.spin-off-axis {
animation: SpinOffAxis 3s linear infinite;
}
}
@keyframes Spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes SpinOffAxis {
0% {
transform: rotateY(0deg) rotate(0deg);
}
50% {
transform: rotateY(180deg) rotate(180deg);
}
100% {
transform: rotateY(360deg) rotate(360deg);
}
}