File size: 925 Bytes
8fd7a1d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import "../../css/colors.css";

* {
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: $page-background;
    color: $page-foreground;
}

a {
    color: $link-color;
}

.main section {
    max-width: 900px;
    margin: auto;
    margin-bottom: 30px;
}

.header-container {
    color: white;
    background-color: $looks-secondary;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
}
.header-text {

}

.users {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.user-image {
    margin-right: 12px;
}
.user {
    display: flex;
    align-items: center;
    width: 300px;
    padding: 4px;
    border-radius: 4px;
    font-size: 1.25rem;
    color: inherit !important;
    text-decoration: none;
    transition: background .2s;
}
.user:link:hover {
    background: $ui-black-transparent;
}