aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/components/index.css
blob: de156e0ec2c9339813941733c4bafd6c8b3a4924 (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
@import "./theme.css";

* {
  box-sizing: border-box;
  margin-inline: 0;
  margin-block: 0;
}

body {
  font-family: var(--cru-default-font-family);
  background: var(--cru-body-background-color);
  color: var(--cru-text-major-color);
  line-height: 1.2;
}

textarea {
  transition: border-color 0.3s;
  border-color: var(--cru-text-minor-color);
}

textarea:hover {
  border-color: var(--cru-clickable-primary-hover-color);
}

textarea:focus {
  border-color: var(--cru-clickable-primary-normal-color);
}

.alert-container {
  position: fixed;
  z-index: 1070;
}

@media (min-width: 576px) {
  .alert-container {
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 575.98px) {
  .alert-container {
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
  }
}