blob: ead313a8ec1687bcac9f49c42a49f5a15465506b (
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
|
.top-bar{
line-height: $four-baselines;
background-color: $dark-grey;
}
.top-bar__user-area {
margin-right: 20px;
vertical-align: middle;
}
.username {
display: inline-block;
text-align: right;
}
.profile-circle{
border-radius: 50%;
width: 30px;
height: 30px;
background: $cyan;
display: none;
}
.profile-initials {
display: inline-block;
color: $light-grey;
font-size: $h4-size;
position: relative;
left: -27px;
top: -10px;
}
.profile-username {
color: $light-grey;
}
#doc-title{
font-family: $semibold-font-family;
color: $light-grey;
margin-left: 40px;
font-size: $h3-size;
}
#top-bar__float-right {
float: right;
margin-right: 20px;
}
#logo-3rd-party__CRI {
background-color: white;
border-radius: 3px;
height: 25px;
padding: 2px;
vertical-align: middle;
}
|