aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/index.css
blob: 9b9956a9c8330c2a7b3dff936d0c13ba5f641c1f (plain)
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
:root {
  --tl-background-color: #f8f9fa;

  --tl-primary-color: rgb(0, 123, 255);
  --tl-primary-inactive-color: rgb(26, 136, 255);
  --tl-primary-lighter-color: rgb(26, 136, 255);
  --tl-primary-darker-color: rgb(0, 111, 230);
  --tl-primary-enhance-color: rgb(77, 163, 255);
  --tl-primary-enhance-inactive-color: rgb(43, 145, 255);
  --tl-primary-enhance-lighter-color: rgb(94, 172, 255);
  --tl-primary-enhance-darker-color: rgb(43, 145, 255);
  --tl-secondary-color: rgb(255, 0, 250);
  --tl-secondary-inactive-color: rgb(255, 26, 251);
  --tl-secondary-lighter-color: rgb(255, 26, 251);
  --tl-secondary-darker-color: rgb(230, 0, 225);
  --tl-text-primary-color: rgb(17, 17, 17);
  --tl-text-primary-inactive-color: rgb(41, 41, 41);
  --tl-text-primary-lighter-color: rgb(41, 41, 41);
  --tl-text-primary-darker-color: rgb(15, 15, 15);
  --tl-text-on-primary-color: rgb(255, 255, 255);
  --tl-text-on-primary-inactive-color: rgb(230, 230, 230);
  --tl-text-on-primary-lighter-color: rgb(255, 255, 255);
  --tl-text-on-primary-darker-color: rgb(230, 230, 230);
  --tl-danger-color: rgb(255, 0, 0);
  --tl-danger-inactive-color: rgb(255, 26, 26);
  --tl-danger-lighter-color: rgb(255, 26, 26);
  --tl-danger-darker-color: rgb(230, 0, 0);
  --tl-success-color: rgb(0, 128, 0);
  --tl-success-inactive-color: rgb(0, 166, 0);
  --tl-success-lighter-color: rgb(0, 166, 0);
  --tl-success-darker-color: rgb(0, 115, 0);
}

body {
  background: var(--tl-background-color);
}

.tl-color-primary {
  color: var(--tl-primary-color);
}

.tl-color-danger {
  color: var(--tl-danger-color);
}

small {
  line-height: 1.2;
}

.flex-fix-length {
  flex-grow: 0;
  flex-shrink: 0;
}

.avatar {
  width: 60px;
  height: 60px;
}

.avatar.large {
  width: 100px;
  height: 100px;
}

.avatar.small {
  width: 40px;
  height: 40px;
}

.icon-button {
  font-size: 1.4rem;
  cursor: pointer;
}

.icon-button.large {
  font-size: 1.6rem;
}

.icon-button.primary-enhance {
  color: var(--tl-primary-enhance-color);
}

.cursor-pointer {
  cursor: pointer;
}

textarea {
  resize: none;
}

.white-space-no-wrap {
  white-space: nowrap;
}

.full-viewport-center-child {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-orange {
  color: #fd7e14;
}

.text-yellow {
  color: #ffc107;
}

.touch-action-none {
  touch-action: none;
}

i {
  line-height: 1;
}

.markdown-container {
  white-space: initial;
}
.markdown-container img {
  max-height: 200px;
  max-width: 100%;
}

a {
  text-decoration: none;
}