-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.css
94 lines (84 loc) · 1.45 KB
/
content.css
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
.content__container,
.content__ul {
min-width: 100vw;
}
.content__ul {
padding: 10px 0px;
}
.content__li {
margin: auto;
max-width: 85vw;
padding: 10px 10px;
padding-right: 20px;
margin-bottom: 10px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--third-bg-color);
border-radius: 10px;
}
.content__hidden {
filter: blur(1px);
opacity: 0.1;
}
.content__container {
height: 90vh;
font-size: 20px;
overflow: auto;
}
.content__content {
display: flex;
flex-direction: column;
}
.content__icons {
min-width: 60px;
}
.content__icons > i {
font-family: FontAwesome;
color: var(--second-text-color);
}
.schedule {
width: calc(85vw - 80px);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
font-size: 1em;
}
.fa-pencil-alt {
margin-right: 5px;
}
.datetime,
.patten,
.content__more,
.patten > i {
font-family: FontAwesome;
color: var(--second-text-color);
font-size: 0.7em;
font-weight: 400;
}
.patten {
display: flex;
align-items: center;
}
.patten > i {
margin-right: 5px;
}
.history__li {
margin: auto;
max-width: 85vw;
padding: 10px 10px;
padding-right: 20px;
margin-bottom: 10px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--third-bg-color);
border-radius: 10px;
}
.history::before {
font-family: FontAwesome;
content: "\f274 ";
}
.history {
color: var(--second-text-color);
}