Project

General

Profile

1
div.alphabet {
2
    display: table;
3
    width: 100%;
4
    margin-bottom: 1em;
5
}
6

    
7
div.alphabet span {
8
    display: table-cell;
9
    color: white;
10
    cursor: pointer;
11
    text-align: center;
12
    width: 3.5%
13
}
14

    
15
div.alphabet span:hover {
16
    text-decoration: none;
17
    color: #feba00;
18
}
19

    
20
div.alphabet span.active {
21
    color: #feba00;
22
    font-style: normal;
23
    font-weight: bold;
24
    text-decoration: none;
25
}
(2-2/6)