-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (60 loc) · 907 Bytes
/
style.css
File metadata and controls
71 lines (60 loc) · 907 Bytes
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
.heading
{
background: goldenrod;
padding: 10px 20px;
margin-top: 20px;
}
.heading>h3
{
width: calc(100% / 3);
text-align: center;
}
.content>div
{
min-height: 500px;
width: calc(100% / 3);
border: 1px solid black;
}
h5.list-1
{
margin: 10px;
}
li:not(:last-child)
{
margin-bottom: 10px;
}
#liste2, .list-item
{
cursor: pointer;
transition: ease-in-out .1s;
}
.first-ul>.list-item:hover,
.liste2:hover
{
font-weight: bolder;
background: rgba(0, 0, 0, .15);
cursor: pointer;
}
.selected
{
color: black;
font-weight: bolder;
}
.selected::after
{
font-family: 'Font Awesome 5 Free';
content: '\f00c';
font-size: 14px;
margin-left: 15px;
}
.action-link
{
cursor: pointer;
transition: ease-in-out .1s;
}
.action-link:hover
{
/* font-weight: bolder; */
color:orange;
background: black;
}