-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.css
85 lines (74 loc) · 1.54 KB
/
common.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
.asside_tab {
/* backdrop-filter: blur(50px); */
margin-bottom: 9px;
border-bottom: 1px solid lightgray;
z-index: 1;
width: 100%;
text-align: left;
.tab_button,
.tab_b {
font-size: 13px;
margin-bottom: -1px;
border-width: 1px;
border-style: solid;
background-color: inherit;
color: #fff;
border: none;
padding: 8px;
z-index: 2;
/* transition: all linear .3s; */
}
.tab_button_active,
.tab_active {
font-size: 16px;
margin-bottom: -1px;
border-width: 1px;
border-style: solid;
border-color: lightgray lightgray #008f7b lightgray;
border-top-right-radius: 8px;
border-top-left-radius: 8px;
background-color: #008f7b;
color: #fff;
font-weight: 600;
padding: 8px;
z-index: 2;
/* transition: all linear .3s; */
}
}
.asside_tab_content {
display: none;
}
.del {
padding: 3px 9px;
cursor: pointer;
&:hover {
background-color: #CF483A;
}
}
.activity_head {
padding: 0px 3px;
/* background-color: gray; */
margin-bottom: 5px;
font-size: 15px;
display: flex;
justify-content: space-between;
align-items: center;
/* font-size: 13px; */
&>* {
font-size: 15px;
}
}
.hr {
width: 100%;
height: 1px;
margin: 2px 0px;
}
.hr_gray {
background-color: #00000020;
}
.hr_white {
background-color: #ffffff;
}
.hr_off_white {
background-color: #ffffff80;
}