-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturtle.css
159 lines (145 loc) · 2.98 KB
/
turtle.css
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
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
:root {
--main-color: black;
--content-accent-color: rgb(255, 136, 0);
--content-back-color: rgba(255, 255, 255, 0.76);
--content-base-color: rgba(213, 241, 241, 0.829);
--content-main-color: rgb(121, 109, 109);
--content-shadow: rgba(85, 85, 85, 0.87);
--main-bg-color: rgb(243, 255, 255);
}
body {
background-color: var(--main-bg-color);
color: var(--main-color);
font-family: 'Noto Serif JP', serif;
font-size: 0px;
}
.site-header{
text-align: center;
}
.site-title a{
text-align: center;
font-size:64px;
font-weight: bold;
color:#1a1a1a;
text-decoration: none;
}
/* .site-title a:hover{
color:#007acc;
} */
.site-description{
font-size:32px;
color:#686868;
}
.site-icons a{
margin: 16px;
}
.site-content{
clear: both;
}
#note p {
font-size: 16px;
}
.content{
float: center;
}
.content-heading{
background-color: var(--content-main-color);
border-radius: 4px 4px 4px 4px / 4px 4px 4px 4px;
box-shadow: 1px 1px 1px 1px var(--content-shadow);
font-size: 28px;
color: white;
text-align: center;
}
/* .item-container{
background-color: var(--content-back-color);
border-radius: 4px 4px 4px 4px / 4px 4px 4px 4px;
box-shadow: 1px 1px 1px 1px var(--content-shadow);
padding: 2px;
margin: 2px;
} */
ul, ol{
padding: 1px;
}
ul li, ol li {
background: var(--content-base-color);
list-style-type: none!important;
}
.item{
border-left: solid 4px var(--content-accent-color);
/* border-radius: 4px 4px 4px 4px / 4px 4px 4px 4px; */
margin: 6px;
text-align: left;
font-size: 20px;
padding: 2px;
}
.item .period{
font-size: 16px;
color:#686868;
}
.small-item{
display: inline-block;
border-left: solid 4px var(--content-accent-color);
/* border-radius: 4px 4px 4px 4px / 4px 4px 4px 4px; */
padding: 4px;
margin: 4px;
font-size: 24px;
/* font-weight: bold; */
text-align: center;
}
.tag {
display: inline-block;
padding: 2px 6px;
margin-right: 5px;
border-radius: 3px;
font-size: 0.75em;
text-transform: uppercase; /* 大文字で表示 */
color: white;
}
.international {
background-color: #2B593F; /* 国際会議のタグ色 */
}
.domestic {
background-color: #5A5A5A; /* 国内会議のタグ色 */
}
.reviewed {
background-color: #28456C; /* Peer-Reviewed のタグ色 */
}
.poster {
background-color: #5a6800; /* ポスター発表のタグ色 */
}
.pdf-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px;
padding: 20px;
}
.pdf-slide {
/* height: 500px; */
width: 100%;
aspect-ratio: 16 / 10;
}
footer {
background-color: var(--content-main-color);
font-size: 24px;
color: #fff;
text-align: center;
}
.content {
width: 100%;
}
@media screen and (max-width: 767px) {
.pdf-slide {
flex-basis: 96%; /* スマホの場合は1列に表示 */
}
}
@media screen and (min-width: 767px) {
.pdf-slide {
flex-basis:48%; /* スマホの場合は1列に表示 */
}
}
@media screen and (min-width: 1534px) {
.pdf-slide {
flex-basis:32%; /* スマホの場合は1列に表示 */
}
}