-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
160 lines (128 loc) · 2.83 KB
/
style.css
File metadata and controls
160 lines (128 loc) · 2.83 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
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
body {
font-family: 'Gilmer', sans-serif;
line-height: 1.6;
color: #333;
}
footer {
margin: 20px;
border: 1px solid #ddd;
margin-left: 200px;
margin-right: 200px;
border-radius: 10px;
}
section {
margin: 50px;
margin-left: 200px;
margin-right: 200px;
}
h2 {
text-align: center;
}
header {
display: flex;
align-items: center;
justify-content: center; /* Changed to space-between */
}
.header-logo {
width: 300px; /* Adjust as necessary */
height: auto; /* Maintain aspect ratio */
margin-left: 20px;
margin: 20px;
}
.header-title {
font-size: 2em; /* Adjust title size as necessary */
text-align: center;
flex-grow: 1; /* Allows the title to grow and use up available space */
margin: 20px;
}
nav {
color: #003366; /* This is a navy blue */
text-align: center;
margin-left: 200px;
margin-right: 200px;
}
section {
background-color: #fff;
}
footer {
background-color: #f4f4f4;
text-align: center;
}
.author-affiliations span {
font-weight: bold;
color: #4169E1;
}
.author-affiliations a {
text-decoration: none;
color: #4169E1;
}
.affiliation {
margin-top: 5px;
}
.emails {
font-style: italic;
margin-top: 5px;
}
.italic-text {
font-style: italic;
}
.buttons {
margin: 20px;
text-align: center; /* This centers the inline-block elements */
}
.button {
text-decoration: none;
background-color: #4169E1; /* PolyU Red for buttons */
color: white; /* White text */
border: none;
padding: 10px 20px; /* Size of the button */
border-radius: 20px; /* Rounded corners */
font-size: 16px; /* Text size */
cursor: pointer; /* Mouse cursor on hover */
display: inline-block; /* Allows for text-align center to work */
margin: 5px; /* Optional: adds space between the buttons */
}
.button:hover {
background-color: #555; /* Lighter gray on hover */
}
pre {
background-color: #f4f4f4; /* light grey background */
border: 1px solid #ddd; /* light grey border */
padding: 10px;
border-radius: 10px;
}
code {
font-family: 'Courier New', Courier, monospace; /* monospaced font */
}
.flex-container {
display: flex;
justify-content: center;
align-items: center;
}
.styled-table {
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
background-color: #009879;
color: #ffffff;
text-align: left;
}
.styled-table th,
.styled-table td {
padding: 12px 15px;
border-right: 1px solid #dddddd; /* This adds the vertical line */
}
.styled-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.styled-table tbody tr:last-of-type {
border-bottom: 2px solid #009879;
}