Profile.module.scss
1.25 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@import '../../styles/app';
.root {
// some styles
}
.profileContactContainer {
margin-top: -75px;
}
.profileContacts {
@include list-unstyled();
display: inline-block;
text-align: left;
> li {
margin-bottom: $spacer / 2;
}
> li > a {
color: lighten($text-color, 30%);
text-decoration: none;
@include hover-focus {
color: $text-color;
}
}
}
.profileAvatar {
border: 3px solid $white;
}
.profileStat {
border-left: none !important;
padding-right: 0 !important;
}
.profileStatValue {
font-size: 28px;
font-weight: $font-weight-base !important;
margin-bottom: 0;
}
.event {
background: $white;
border-radius: $border-radius;
padding: 20px 20px 0;
position: relative;
margin-bottom: $spacer;
box-shadow: var(--widget-shadow);
}
.eventTitle {
margin-bottom: 2px;
font-weight: $font-weight-semi-bold;
a {
text-decoration: none;
color: #7ca9dd;
}
small > a {
color: $text-muted;
}
}
.eventAvatar {
float: left;
margin-right: $spacer;
}
.eventAvatar > img {
width: 34px;
}
.eventBody {
font-size: 0.9rem;
margin-bottom: $spacer;
}
.eventFooter {
background-color: $gray-100;
margin: 20px -20px 0;
padding: 10px 20px;
}
.eventTimestamp {
color: $text-muted;
}