blob: f6234ff3a3f625f90e14ced9608a648ef7df0ea1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
.box {
padding: 1rem 1rem;
width: 100%;
color: #333;
background-color: #eee;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
}
.box:hover,
.box:active,
.box:focus {
font-weight: bold;
background-color: #ddd;
}
.arrow {
font-size: 24px;
line-height: 20px;
}
|