Skip to content

Commit 66947ad

Browse files
author
EccRiley
committed
Attempt to optimize public UI
1 parent b06083d commit 66947ad

File tree

249 files changed

+109981
-7437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

249 files changed

+109981
-7437
lines changed

Comps alias

840 Bytes
Binary file not shown.

zmisc/MAP-untex.R MAP-untex.R

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
file <- "MAP-v9-1-untex.Rmd"
1+
file <- "MAP-v11-untex.Rmd"
22
ex <- data.frame(
33
a = c("`\\{\\{(.*?)\\}\\}`",
44
"\\\\chisq",
@@ -32,4 +32,4 @@ ex <- data.frame(
3232

3333
library(Riley)
3434

35-
Runtex(file = file, addlexpr = ex, cat = TRUE, catFile = "MAP-v9-docx.Rmd")
35+
Runtex(file = file, addlexpr = ex, cat = TRUE, catFile = "MAP-v11-docx.Rmd")

MAP-v11-diff.Rmd MAP-v11-docx.Rmd

+82-142
Large diffs are not rendered by default.

MAP-v11.Rmd

+11-69
Large diffs are not rendered by default.

auxDocs/gallery.css

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300');
2+
3+
* {
4+
margin: 0;
5+
padding: 0;
6+
box-sizing: border-box;
7+
}
8+
9+
.gallery {
10+
width: 75%;
11+
margin: 0 auto;
12+
padding: 5px;
13+
background: #fff;
14+
box-shadow: 0 1px 2px rgba(0,0,0,.3);
15+
}
16+
17+
.gallery > div {
18+
position: relative;
19+
float: left;
20+
padding: 5px;
21+
}
22+
23+
.gallery > div > img {
24+
display: block;
25+
width: 50%;
26+
transition: .1s transform;
27+
transform: translateZ(0); /* hack */
28+
}
29+
30+
.gallery > div:hover {
31+
z-index: 1;
32+
}
33+
34+
.gallery > div:hover > img {
35+
transform: scale(1.7,1.7);
36+
transition: .3s transform;
37+
background-color: #ffffff;
38+
}
39+
40+
.cf:before, .cf:after {
41+
display: table;
42+
content: "";
43+
line-height: 0;
44+
}
45+
46+
.cf:after {
47+
clear: both;
48+
}

auxDocs/riley.css

+54
Original file line numberDiff line numberDiff line change
@@ -529,3 +529,57 @@ aside:before {
529529
content: ">>";
530530
top: -0.5rem;
531531
}
532+
533+
534+
/* --------------------------------------------------------*/
535+
/* IMAGE GALLERY */
536+
/* --------------------------------------------------------*/
537+
538+
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300');
539+
540+
* {
541+
margin: 0;
542+
padding: 0;
543+
box-sizing: border-box;
544+
}
545+
546+
.gallery {
547+
width: 75%;
548+
margin: 0 auto;
549+
padding: 5px;
550+
background: #fff;
551+
box-shadow: 0 1px 2px rgba(0,0,0,.3);
552+
}
553+
554+
.gallery > div {
555+
position: relative;
556+
float: left;
557+
padding: 5px;
558+
}
559+
560+
.gallery > div > img {
561+
display: block;
562+
width: 50%;
563+
transition: .1s transform;
564+
transform: translateZ(0); /* hack */
565+
}
566+
567+
.gallery > div:hover {
568+
z-index: 1;
569+
}
570+
571+
.gallery > div:hover > img {
572+
transform: scale(1.7,1.7);
573+
transition: .3s transform;
574+
background-color: #ffffff;
575+
}
576+
577+
.cf:before, .cf:after {
578+
display: table;
579+
content: "";
580+
line-height: 0;
581+
}
582+
583+
.cf:after {
584+
clear: both;
585+
}

0 commit comments

Comments
 (0)