This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
forked from yuzulabo/Mastodon-Activity-Embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
96 lines (94 loc) · 1.51 KB
/
style.scss
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
92
93
94
95
96
html,
body {
font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue",
"Segoe UI", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
font-size: 16px;
line-height: 28px;
background-color: transparent;
margin: 0;
padding: 0;
}
.invisible {
display: none;
}
body {
&.light {
color: #000;
.about {
h1 {
color: #282c37;
}
span {
color: #282c37;
}
}
.row {
section {
span:last-child {
color: #282c37;
}
}
}
}
&.dark {
color: #fff;
.about {
h1 {
color: #d9e1e8;
}
span {
color: #9baec8;
}
}
.row {
section {
span:last-child {
color: #d9e1e8;
}
}
}
}
.about {
display: flex;
justify-content: flex-start;
align-items: baseline;
padding: 5px 0 20px 0;
h1 {
font-size: 26px;
font-weight: 500;
line-height: 30px;
margin-right: 5px;
}
span {
font-size: 16px;
font-weight: 400;
line-height: 16px;
}
span#week {
flex-grow: 1;
}
* {
margin: 0;
}
}
.row {
width: 100%;
display: flex;
justify-content: space-around;
padding-bottom: 5px;
text-align: right;
section {
-webkit-box-flex: 1;
flex: 1 0 auto;
padding: 0 10px;
span {
display: block;
}
strong {
font-weight: 500;
font-size: 32px;
line-height: 48px;
}
}
}
}