| 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
 | | :root { |  |     --first-color: #093760; |  | } |  |   |  |   |  | .flex-center { |  |     display: flex; |  |     align-items: center; |  |     justify-content: center; |  | } |  | .header { |  |     background-color: var(--first-color); |  |     height: 6%; |  | } |  |   |  | .header span { |  |     color: #ffffff; |  |     font-weight: 400; |  | } |  |   |  |   |  | .main { |  |     height: 94%; |  |     background-color: #f3f3f3; |  | } |  |   |  | .main ul { |  |     padding-top: 12px; |  |     opacity: 1; |  | } |  |   |  | .main .nav { |  |     height: 60px; |  |     background-color: #ffffff; |  |     padding: 10px 15px; |  |     justify-content: flex-start; |  |     cursor: pointer; |  |     transition: .3s; |  |     position: relative; |  | } |  | .main .nav:hover { |  |     background-color: #f3f3f3; |  | } |  |   |  | .nav-icon { |  |     height: 45px; |  |     width: 45px; |  | } |  | .nav-icon-img { |  |     height: 100%; |  | } |  |   |  |   |  | .nav .nav-content { |  |     color: #585858; |  |     padding: 5px; |  | } |  | .nav .nav-content-sub { |  |     font-size: 1rem; |  | } |  | .nav .nav-content-desc { |  |     font-size: .6rem; |  |     margin-top: .15rem; |  |     white-space: nowrap; |  |     text-overflow:ellipsis; |  |     overflow:hidden; |  |     width: 150px; |  | } |  |   |  | .nav-icon-next { |  |     position: absolute; |  |     right: 10px; |  | } |  | .nav-icon-img-next { |  |     height: 40%; |  |     transform: translateY(6%); |  | } |  |   |  | @media screen and (min-width: 320px) { |  |     .nav .nav-content-desc { |  |         width: 250px; |  |     } |  | } | 
 |