-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWidgets.css
56 lines (47 loc) · 942 Bytes
/
Widgets.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
.widgets {
position: sticky;
top: 80px;
flex: 0.2;
background-color: white;
border-radius: 10px;
border: 1px solid lightgray;
height: fit-content;
width: 100%;
padding-bottom: 10px;
display:inline-block;
}
.widgets__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
}
.widgets__header > h2 {
font-size: 16px;
font-weight: 400;
}
.widgets__article {
display: flex;
padding: 10px;
cursor: pointer;
}
.widgets__article:hover {
background-color: whitesmoke;
}
.widgets__articleLeft {
color: #0177b7;
margin-right: 5px;
}
.widgets__articleLeft > .MuiSvgIcon-root {
font-size: 15px;
}
.widgets__articleRight {
flex: 1;
}
.widgets__articleRight > h4 {
font-size: 14px;
}
.widgets__articleRight > p {
font-size: 12px;
color: gray;
}