forked from evgeny-nadymov/telegram-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TelegramApp.css
98 lines (82 loc) · 1.46 KB
/
TelegramApp.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
/*
* Copyright (c) 2018-present, Evgeny Nadymov
*
* This source code is licensed under the GPL v.3.0 license found in the
* LICENSE file in the root directory of this source tree.
*/
*:focus {
outline: none;
}
html {
background: #fff;
height: 100%;
width: 100%;
overflow: hidden;
}
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
font: 16px/21px 'Roboto', sans-serif;
overflow: hidden;
background: var(--background);
color: var(--text-primary);
}
a {
color: var(--color-accent-main);
}
code {
color: var(--color-accent-dark);
}
pre {
border-color: var(--border);
color: var(--color-accent-dark);
}
pre::selection {
color: var(--text-primary);
background-color: highlight;
}
b,
strong {
font-weight: 700;
}
mark {
background-color: #fff8cc;
border-radius: 3px;
padding: 0 3px;
}
#root {
height: 100%;
width: 100%;
overflow: hidden;
}
#app {
height: 100%;
width: 100%;
overflow: hidden;
background: transparent;
}
.page {
height: calc(100% - 0px);
max-width: 1680px;
min-width: 300px;
margin: 0 auto;
border-style: solid;
border-width: 0 1px 0 1px;
border-color: var(--border);
background: var(--background);
color: var(--text-primary);
overflow: hidden;
}
.page-third-column {
max-width: 1680px;
}
.item-selected {
}
.pointer {
cursor: pointer;
}
.notification-close-button {
padding: 4px;
}