-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
93 lines (78 loc) · 1.84 KB
/
styles.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
a {
color: #1772d0;
text-decoration: none;
}
a:focus,
a:hover {
color: #f09228;
text-decoration: none;
}
body,
td,
th,
tr,
p,
a {
font-family: 'Noto Sans', sans-serif;
font-size: 16px;
}
strong {
font-family: 'Noto Sans', sans-serif;
font-size: 16px;
font-weight: 700;
}
papertitle {
font-family: 'Noto Sans', sans-serif;
font-size: 16px;
font-weight: 700;
}
name {
font-family: 'Noto Sans', sans-serif;
font-size: 18px;
font-weight: 700;
}
heading {
font-family: 'Noto Sans', sans-serif;
font-size: 24px;
}
papertitle {
font-family: 'Noto Sans', sans-serif;
font-size: 16px;
font-weight: 700
}
.image-container {
display: flex;
justify-content: center; /* Horizontal centering */
align-items: center; /* Vertical centering */
}
.image-container img {
max-width: 100%; /* Ensure the image doesn't exceed its natural width */
}
.social-icons {
display: flex;
justify-content: center; /* Center icons horizontally */
padding: 20px 0; /* Padding at the top and bottom */
}
.social-icons a {
margin: 0 10px; /* Spacing between icons */
font-size: 40px; /* Icon size */
color: #333; /* Icon color; adjust as needed */
transition: color 0.3s; /* Smooth color transition */
}
.social-icons a:hover {
color: #007BFF; /* Color when the icon is hovered over; adjust as needed */
}
.social-icons-small {
display: flex;
justify-content: center; /* Center icons horizontally */
padding: 0px 0; /* Padding at the top and bottom */
}
.social-icons-small a {
margin: 0 10px; /* Spacing between icons */
font-size: 20px; /* Icon size */
color: #333; /* Icon color; adjust as needed */
transition: color 0.3s; /* Smooth color transition */
}
.social-icons-small a:hover {
color: #007BFF; /* Color when the icon is hovered over; adjust as needed */
}