summaryrefslogtreecommitdiff
path: root/styles/main.css
blob: 6f56806d12370d62b138d767da4f0a09865195e9 (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
* {
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

html, body {
    font-family: sans-serif;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin:0;
    background-color: var(--bg);
    color: var(--color);
}

user {
    border-radius: 100%;
    border: 3px solid gray;
    overflow: hidden;
    display: block;
    width: 70px;
    height: 70px;
    position: fixed;
    right: 30px;
    top: 10px;
    z-index: 91;
}

user img {
    width: 100%;
    height: 100%;
}

nav {
    display: flex;
    align-items: center;
    position: fixed;
    top:20px;
    left: 10px;
    padding-right:115px;
    width:calc(100% - 20px);
    height:50px;
    background-color: gray;
    z-index: 90;
    border-radius: 10px;
    box-sizing: border-box;
}

nav .nav-el {
    margin:10px;
    text-decoration: none;
    color: #eee;
    transition-duration: 0.2s;
}

nav .nav-el:hover {
    color: white;
}

content {
    display: block;
    margin-top: 100px;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom:50px;
}