-
Notifications
You must be signed in to change notification settings - Fork 72
/
index.css
78 lines (68 loc) · 1.63 KB
/
index.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
:root {
--tg-theme-bg-color: #fff;
--tg-theme-text-color: #0a0a0a;
--tg-theme-hint-color: #929292;
--tg-theme-link-color: #207ae4;
--tg-theme-button-color: #5bc8fb;
--tg-theme-button-text-color: #fffeec;
--tg-theme-secondary-bg-color: #f3f2f9;
--default-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol';
}
body {
background: var(--tg-theme-secondary-bg-color);
padding: 20px 20px;
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;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.App-logo {
height: 40vmin;
}
@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}
.betaVersion {
padding: 10px 10px;
margin-bottom: 20px;
border: 1px solid #1777ff;
}
.App-header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.contentWrapper {
background: var(--tg-theme-bg-color);
color: var(--tg-theme-text-color) !important;
border-radius: 10px;
margin: 5px 0;
padding: 20px;
box-sizing: border-box;
}
.ant-input,
.ant-select,
.ant-select-item {
background-color: unset !important;
}
@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}