summaryrefslogtreecommitdiff
path: root/fig-frontend/client/src/index.css
blob: 891c5fdab8fc587a1c739eb637a24b9dfa78cd6e (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
body {
    margin: 0px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;
}

fig-window {
    display: block;
    position: absolute;
}

fig-header {
    position: absolute;
    text-align: center;
    border-radius: 100px;
    border-style: solid;
    border-color: silver;
    border-width: 5px;
    background: linear-gradient(0deg, rgba(89,89,89,1) 35%, rgba(158,158,158,1) 100%);
    top: 1em;
    left: 33vw;
    width: 33vw;
}

fig-header:hover {
  filter: brightness(150%);
}