blob: e10cfd8f3e587a46313b31ed717eee3eca3ab516 (
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
|
.top-bar{
position:fixed;
top:0;
left:0;
width:100%;
height:$top-bar-height;
background-color:#363636; //todo: $dark-grey
}
.doc-title{
position:fixed;
font-family: $semibold-font-family;
left:$left-margin;
top:10px;
color: #f5f5fa; //todo: $light-grey:
}
.profile-circle {
position:fixed;
right: 400px;
border-radius: 50%;
width: 30px;
height: 30px;
background: #33c2e0;//todo: $cyan
top:3px;
}
.profile-initials {
position:fixed;
top:10px;
right:405px;
color: #f5f5fa;//$light-grey
}
.profile-username {
position:fixed;
top:10px;
right: 295px;
color: #f5f5fa;//$light-grey
}
.owner-logo {
position:fixed;
top:3px;
right: 50px;
}
.poweredby{
position:fixed;
bottom:10px;
right:10px;
vertical-align: middle;
}
|