-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvis.css
More file actions
115 lines (86 loc) · 1.6 KB
/
vis.css
File metadata and controls
115 lines (86 loc) · 1.6 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
/* ----- global ----- */
html {
background-color: #EEE;
}
body {
background-color: white;
margin-left: 175px;
margin-right: 175px;
margin-top: -15px;
padding: 5px 20px;
border-left: 1px solid #CCC;
border-right: 1px solid #CCC;
}
/* ----- header section ----- */
#article-title {
font-family: "Times New Roman", Times, serif;
font-size: 40px;
}
#author-box {
font-family: "Times New Roman", Times, serif;
margin-top: -15px;
}
#teaser-img {
max-width: 100%;
max-height: 100%;
}
#title-sep {
border-top: 1px solid #CCC;
}
#date-box {
font-family: "Times New Roman", Times, serif;
margin-top: -10px;
font-size: 20px;
}
/* ----- subtitles ----- */
.subtitle {
}
.title-sep {
margin-bottom: 20px;
}
/* ----- paragraphs ----- */
#intro-par {
margin: 35px 50px 15px 50px;
}
.reg-par {
margin-bottom: 40px;
text-indent: 40px;
}
.block-quote {
margin-left: 50px;
margin-bottom: 40px;
}
ul {
margin: -20px 0px 40px 50px;
}
/* ----- columns ----- */
.fbox {
display: flex;
justify-content: space-between;
align-items: flex-start; /*center will put vis in the middle of block */
margin: 20px 0px;
width: 100%;
}
.fcols { /* both types */
width: 54%;
}
.text-fcol {
width: 44%;
/*align-self: flex-start;*/
}
.vis-fcol {
/*align-self: center;*/
}
iframe {
width: 100%;
}
#combo-vis {
align-self: center;
}
/* ----- references ----- */
#refs {
}
.citation {
font-size: x-small;
vertical-align: super;
}