File size: 988 Bytes
540b600
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import "../../css/colors.css";
@import "../../css/units.css";

.author-info {
    color: $ui-white;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: default;
}

.avatar {
    margin-right: .5625rem;
}

.project-title {
    max-width: $menu-bar-item-max-width;
    display: block;
    overflow: hidden;
    font-size: $menu-bar-large-font-size;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.username-line {
    max-width: $menu-bar-item-max-width;
    font-size: $menu-bar-standard-font-size;
    display: block;
    overflow: hidden;
    font-weight: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.username {
    font-weight: bold;
}

.link {
    text-decoration: none;
    color: $ui-white !important;
}
.link:hover {
    text-decoration: underline;
}
.link .author-info {
    cursor: pointer;
}