main.css 3.69 KB
Newer Older
JOE Thunyathep S's avatar
up  
JOE Thunyathep S committed
1
2
3
4
5
6
7
8
9
10
11
12
13
.jumbotron {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .jumbotron {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

Joe TS Dell's avatar
update    
Joe TS Dell committed
14
15
16
17
18
19
20
21
#document-body {
  font-family: 'Noto Sans JP', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif; 
}

JOE Thunyathep S's avatar
up  
JOE Thunyathep S committed
22
23
24
25
.jumbotron p:last-child {
  margin-bottom: 0;
}

Joe TS Dell's avatar
update    
Joe TS Dell committed
26
27
28
/* .jumbotron h1 {
  font-weight: 700;
} */
JOE Thunyathep S's avatar
up  
JOE Thunyathep S committed
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

.jumbotron .container {
  max-width: 40rem;
}

footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer p {
  margin-bottom: 0.25rem;
}

body{
    background-color: #cc3125;/* thistle; */
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}


a {
Joe TS Dell's avatar
up    
Joe TS Dell committed
64
  color: #2196f3;
JOE Thunyathep S's avatar
up  
JOE Thunyathep S committed
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
  /* text-decoration: underline; */
  background-color: transparent;
}
a:hover{
  color: rgb(65, 57, 57);
}

a:visited {
	/* color: black; */
}


.myBtn {
    color: #fff;
    background-color: tomato;
    border-color: thistle; /*set the color you want here*/
    width: 180px;
}
.myBtn:hover, .myBtn:focus, .myBtn:active, .myBtn.active, .open>.dropdown-toggle.myBtn {
    color: #fff;
    background-color: thistle;
    border-color: #285e8e; /*set the color you want here*/
}

.thumbimg{
    width: 100%;
    height: 225px;
}

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: blue;
    border: solid;
    border: 4px;
}

.windSVG{
    margin-right : 20px;
}

.hftlogo{
Joe TS Dell's avatar
Joe TS Dell committed
110
  /* margin-right : 20px; */
JOE Thunyathep S's avatar
up  
JOE Thunyathep S committed
111
112
  /* width: 100px; */
}
Joe TS Dell's avatar
Joe TS Dell committed
113
114
115
.hftlogo:hover{
  cursor: pointer;
}
JOE Thunyathep S's avatar
up  
JOE Thunyathep S committed
116
117
118
119
120
121

.extension{
  padding: 20px 10px;
  /* min-height: 445px; */
  /* max-height: 445px; */
  /* margin: 20px; */
Joe TS Dell's avatar
Joe TS Dell committed
122
  height: 610px;
JOE Thunyathep S's avatar
up  
JOE Thunyathep S committed
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
}

.py-5{
  padding: 1rem!important; 
}

.card-body{
  min-height: 90px;
  padding: 0.5rem 0.5rem 0.2rem;

}

.card-text{
  max-height: 85px;
  overflow: auto;
  /* overflow-y: auto; */  
  /* padding-bottom: 10px; */

}

.btnGroupDiv{
  /* padding: 20px 00px 00px 20px; */
  padding: 0.5rem;
}

.blue-text {
  color: #2196f3 !important;
}

.grey-text {
  color: #9e9e9e !important;
}

.z-depth-1, .chip:active {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12) !important;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12) !important;
}

.hftBackground {
  background-image: url(../imgs/avatar/Bibliothek_HFT_f.jpg);
  background-size: cover;
}
/* .hftBackground::after {
  content: '';
    z-index: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.65);
    left: 0;
    top: 0;
} */

main[role=main]{
  background-color: #f8f9fa!important;
  padding-bottom: 1rem!important;
}

179
180
181
182
183
184
185
186
187
188
189
190
a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
}

a:hover {
  background-color: #ddd;
  color: black;
}

.previous {
Patrick's avatar
Patrick committed
191
192
193
  background-color: #cccccc;
  color: #0f0f0f;

Patrick's avatar
Patrick committed
194
  margin-left:40%;
Patrick's avatar
Patrick committed
195
196
  cursor: pointer;
  border-radius: .2rem;
Patrick's avatar
Patrick committed
197
198
199
200
  border: none;
  border: 0px;
  width: 6em;
  height: 2em;
201
202
  
}
Patrick's avatar
Patrick committed
203
204
205
206
207
208
209
210
211
212
213
214
.previous:disabled,
.previous[disabled]{
  cursor: not-allowed;
  background-color: #f1f1f1;
  color: #666666;
}
.next:disabled,
.next[disabled]{
  background-color: #0069d970;
  color: #666666;
  cursor: not-allowed;
}
Patrick's avatar
Patrick committed
215
216
217
#papercount{
  text-align: center;
}
218
.next {
Patrick's avatar
Patrick committed
219
  /* background-color: #2196f3 !important; */
220
  color: white;
Patrick's avatar
Patrick committed
221
222
  cursor: pointer;
  border-radius: .2rem;
Patrick's avatar
Patrick committed
223
224
225
226
227
228
229
  color: #fff;
  border: none;
  border: 0px;
  background-color: #0069d9;
  width: 6em;
  height: 2em;

Patrick's avatar
Patrick committed
230
231
}
.next:hover{
Patrick's avatar
Patrick committed
232
233
234
  background-color: #005bbd !important;
  border: none;
  border: 0px;
235
236
237
238
}

.round {
  border-radius: 50%;
Patrick's avatar
Patrick committed
239
240
241
}
.publication_card{
  overflow:hidden;
242
}