-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathencyclopedia.css
More file actions
128 lines (120 loc) · 2.28 KB
/
encyclopedia.css
File metadata and controls
128 lines (120 loc) · 2.28 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@media (min-width: 925px) and (max-width: 1447px) {
#body,
.bs-sidebar {
margin-top: 8rem !important;
}
}
#body {
margin-top: 20px;
}
#main h1 .header-badge [data-current-page="Encyclopedia"] {
display: none;
}
.hidden[data-current-page="Encyclopedia"] {
display: none;
}
.main-container [data-current-page="Encyclopedia"] {
padding: 0px;
padding-bottom: 20px;
}
.side-box {
width: 240px;
box-shadow: 0px 1px 0px #b2b1b4;
border-radius: 4px;
border-width: 1px;
border-style: solid;
border-color: #b2b1b4;
padding: 10px;
margin-bottom: 20px;
margin-right: 20px;
line-height: 20px;
background-color: white;
}
.encyclopedia-menu .term-button {
display: inline-flex;
background-color: rgba(44, 123, 135, 1);
align-items: center;
justify-content: center;
border-radius: 2px;
border: none;
color: white;
font-size: 18px;
height: 32px;
width: 32px;
padding: 0px;
}
.encyclopedia-menu .term-button.not-exists {
pointer-events: none;
cursor: default;
background: rgba(44, 123, 135, 0.3);
}
.encyclopedia-menu .topic-submit-button {
text-decoration: none;
margin-top: 10px;
background-color: #2c7b87;
border-radius: 3px;
border: none;
color: white;
font-size: 14px;
display: inline-block;
}
.side-box-title {
color: #666a6a;
font-size: 15px;
padding-bottom: 7px;
}
.side-box-text {
font-size: 12px;
}
.side-box-input {
font-size: 13px;
width: 210px;
margin-bottom: 7px;
margin-top: 5px;
padding: 0px;
height: 23px;
border-radius: 4px;
border: solid #e5e5e5 1px;
}
#encyc-table {
border-radius: 4px;
border: 1px solid #e5e5e5;
padding: 12px;
margin-top: 12px;
}
#encyc-table-content {
display: table;
width: 100%;
table-layout: fixed;
padding: 6px 0 6px 0;
border-top: 1px solid #e5e5e5;
}
#encyc-table-content span {
display: table-cell;
}
#encyc-table-th {
padding-bottom: 1px;
background-color: white;
border-radius: 4px;
}
#encyc-table-tr {
background-color: white;
border-bottom: 1px solid #e5e5e5;
border-radius: 4px;
}
#encyc-table-td {
padding: 8px;
border: none;
border-radius: 4px;
}
#encyc-table-td:first-child,
#encyc-table-th:first-child {
border-left: none;
padding-left: 15px;
}
#encyc-table-th:first-child {
border-radius: 6px;
}
.hidden {
display: none !important;
}