-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
102 lines (84 loc) · 1.54 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
94
95
96
97
98
99
100
101
102
@font-face {
font-family: aaargh;
src: url(fonts/Aaargh.ttf);
}
body {
color: rgba(100, 100, 100, 1.0);
background-color: white;
font-family: Arial, Helvetica, sans-serif;
}
.title {
text-align: center;
margin: auto;
width: 90%;
padding: 0px;
font-family: "aaargh", Arial, Helvetica, sans-serif;
font-size:large;
}
.author-container {
width:90%;
margin:auto;
}
.author {
font-size:medium;
width:33%;
float: left;
}
.icon-container {
text-align: center;
}
.icon {
}
.icon img {
width: 64px;
padding: 20px 0px 20px 0px;
}
.section {
margin: auto;
width: 50%;
min-width: 400px;
max-width: 800px;
padding: 20px 0px 0px 0px;
font-family: Arial, Helvetica, sans-serif;
text-align:justify;
}
.videocontainer {
margin: auto;
width: 50%;
padding: 0px;
}
.citation {
margin: auto;
padding: 0px;
font-family: "Courier New", Courier, monospace
}
#results {
/* Prevent vertical gaps */
line-height: 0;
-webkit-column-count: 5;
-webkit-column-gap: 0px;
-moz-column-count: 5;
-moz-column-gap: 0px;
column-count: 3;
column-gap: 0px;
}
#results img {
/* Just in case there are inline attributes */
padding:2px;
width: 100% !important;
height: auto !important;
}
a:link {
color: black;
text-decoration: none;
}
a:visited {
color: black;
text-decoration: none;
}
a:hover {
color: rgba(250, 20, 30, 1.0);
}
a:active {
text-decoration: underline;
}