-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (110 loc) · 1.84 KB
/
style.css
File metadata and controls
114 lines (110 loc) · 1.84 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
* {
margin: 0;
padding: 0;
}
body {
box-sizing: border-box;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #fffbeb;
}
.container,
.topic-content {
width: 80%;
height: auto;
margin: 50px auto;
padding: 40px auto;
}
/* Header */
.header {
display: flex;
align-items: center;
justify-content: space-between;
}
.header h1 {
font-weight: normal;
text-align: center;
}
.header a {
display: flex;
justify-content: space-between;
align-items: center;
text-decoration: none;
background: #fde047;
padding: 5px 15px;
border-radius: 25px;
transition: 0.3s ease;
}
.header a:hover {
background: #fcd34d;
}
.header a > svg {
margin-right: 5px;
color: #0f172a;
}
.header a > span {
color: #0f172a;
font-weight: normal;
font-size: 18px;
}
/* Menu */
.menu{
width: 82%;
height: auto;
margin: 50px auto;
display: flex;
align-items: center;
font-size: 18px;
}
.menu-item{
display: flex;
justify-content: flex-start;
list-style: none;
}
.menu-list{
margin-left: 15px;
}
.menu-link{
padding: 10px 15px;
border: 1px solid #302906;
border-radius: 6px;
cursor: pointer;
text-decoration: none;
color: #302906;
}
.menu-list .active{
background: #fcd34d;
border: 1px solid #fcd34d;
border-radius: 6px;
}
/* Table */
.topic-content table {
border-collapse: collapse;
width: 100%;
}
.topic-content thead{
border: 1px solid #e8cb3a ;
}
.topic-content th {
text-align: center;
padding: 8px;
background-color: #fde047;
color: #0f172a;
}
.topic-content td {
text-align: left;
cursor: pointer;
padding: 8px;
border: 1px solid #302906 ;
}
.topic-content td:nth-child(1) {
text-align: center;
padding: 8px;
}
.topic-content td > a {
text-decoration: none;
color: #302906;
}
.topic-content td > a:hover{
text-decoration: underline;
color:#0048ff ;
}