├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── bootstrap ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── code ├── cppamp │ ├── Makefile │ └── vector_sum.cpp ├── cuda │ ├── Makefile │ └── vector_sum.cu └── thrust │ ├── Makefile │ └── vector_sum.cu ├── data ├── 201x_acc_fraction.svg ├── Makefile ├── TOP500_201011.csv ├── TOP500_201111.csv ├── TOP500_201206.csv ├── TOP500_201211.csv ├── TOP500_201306.csv ├── TOP500_201311.csv ├── TOP500_201406.csv ├── TOP500_201411.csv ├── TOP500_201506.csv ├── TOP500_201511.csv └── plot.R ├── figures ├── GK210_sm.svg ├── GK210_sm.tex ├── K40.svg ├── K40.tex ├── Makefile ├── coalesced_mem_access.svg ├── coalesced_mem_access.tex ├── gpu_cpu_dichotomy.svg ├── gpu_cpu_dichotomy.tex ├── grid_block.svg ├── grid_block.tex ├── high_throughput_smx.svg ├── high_throughput_smx.tex ├── non_coalesced_mem_access.svg ├── non_coalesced_mem_access.tex ├── thread.svg ├── thread.tex ├── thread_block.svg └── thread_block.tex ├── img ├── 1024px-San_Francisco_Haight_Str_Guitar_Shop.jpg ├── 1024px-School_of_Pterocaesio_chrysozona_in_Papua_New_Guinea_1_x400.jpg ├── 1024px-Taylor415_acoustic.jpg ├── 1024px-Thunnus_orientalis_Osaka_Kaiyukan_Aquarium.jpg ├── 1024px-Thunnus_orientalis_Osaka_Kaiyukan_Aquarium_cropped_x400.jpg ├── 1024px-Thunnus_orientalis_Osaka_Kaiyukan_Aquarium_x400.jpg ├── 1024px-Ukulele-electro-acoustic.jpg ├── 1024px-unmarked_holes.jpg ├── 1200x_K80_tech_powerup.jpg ├── 1200x_islay_overbright.png ├── 1200x_islay_overbright_annotated.png ├── 1290px_wikimedia_1937_radio_assembly_line.jpg ├── 400x_warning-42657_1280.png ├── 800px-MPI-CBG_building_outside_4pl.jpg ├── 800px-San_Francisco_Haight_Str_Guitar_Shop.jpg ├── 800x_warning-42657_1280.png ├── Andy_McKee_January_2008.jpg ├── Automated_pipetting_system_using_manual_pipettes.jpg ├── Central-Processing-Unit.jpeg ├── Central-Processing-Unit_x400.jpeg ├── Central-Processing-Unit_x600.jpeg ├── EDBF_European_Dragon_Boat_Championships_1996_in_Silkeborg,_Swedish_Mixed_Team_500m.jpg ├── Elektrofryingpan_landscape.jpg ├── NVIDIA-CUDA.jpg ├── Nvidia-Tesla-K80.jpg ├── Nvidia-Tesla-K80_x200.jpg ├── Nvidia-Tesla-K80_x400.jpg ├── OpenGL_White_500px_Nov14.png ├── OpenMP_logo.png ├── Sleeping_students.jpg ├── Titan_render.png ├── Vulkan_White_500px_Mar15.png ├── Windows_Blue_Screen_on_room_full_of_computers.JPG ├── amd-firepro-s9150-server-graphics.png ├── amd-firepro-s9150-server-graphics_x200.png ├── amd-firepro-s9150-server-graphics_x400.png ├── apple-iphone-desk-office.jpg ├── apu_comic.gif ├── baseguitar.jpg ├── dark_and_books.jpg ├── dragonboat.jpg ├── forage_fish.jpg ├── forage_fish_x400.jpg ├── forage_fish_x600.jpg ├── gtc2015_mark_harris_beyond_cuda7.png ├── islay_1024px.png ├── islay_annotated_1024px.png ├── islay_overbright.xcf ├── islay_overbright_annotated.xcf ├── khronos_road_map.png ├── laser_experiment.jpg ├── logo-cpp.jpg ├── monkey-452864_1920.jpg ├── monkey-452864_450.jpg ├── monkey-452864_600.jpg ├── nvidia_kepler_die_shot.jpg ├── openacc_logo.jpg ├── plos_best_practises_header.png ├── shit_happens.jpg ├── software-carpentry-banner.png ├── staircase.jpg ├── thrust_logo.png ├── titan_x_small.png ├── titan_x_small_x600.png ├── touchscreen-guitar.jpg ├── tuna.jpg ├── tuna_x400.jpg ├── tuna_x600.jpg ├── warning-42657_1280.png ├── xeon_phi.jpg ├── xeon_phi_x200.jpg └── xeon_phi_x400.jpg ├── index.html ├── links.md ├── my_reveal.css ├── pandoc-revealjs.template ├── reveal.js ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── css │ ├── print │ │ ├── paper.css │ │ └── pdf.css │ ├── reveal.css │ ├── reveal.scss │ └── theme │ │ ├── README.md │ │ ├── beige.css │ │ ├── black.css │ │ ├── blood.css │ │ ├── league.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ ├── source │ │ ├── beige.scss │ │ ├── black.scss │ │ ├── blood.scss │ │ ├── league.scss │ │ ├── moon.scss │ │ ├── night.scss │ │ ├── serif.scss │ │ ├── simple.scss │ │ ├── sky.scss │ │ ├── solarized.scss │ │ └── white.scss │ │ ├── template │ │ ├── mixins.scss │ │ ├── settings.scss │ │ └── theme.scss │ │ └── white.css ├── js │ └── reveal.js ├── lib │ ├── css │ │ └── zenburn.css │ ├── font │ │ ├── league-gothic │ │ │ ├── LICENSE │ │ │ ├── league-gothic.css │ │ │ ├── league-gothic.eot │ │ │ ├── league-gothic.ttf │ │ │ └── league-gothic.woff │ │ └── source-sans-pro │ │ │ ├── LICENSE │ │ │ ├── source-sans-pro-italic.eot │ │ │ ├── source-sans-pro-italic.ttf │ │ │ ├── source-sans-pro-italic.woff │ │ │ ├── source-sans-pro-regular.eot │ │ │ ├── source-sans-pro-regular.ttf │ │ │ ├── source-sans-pro-regular.woff │ │ │ ├── source-sans-pro-semibold.eot │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ ├── source-sans-pro-semibold.woff │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ └── source-sans-pro.css │ └── js │ │ ├── classList.js │ │ ├── head.min.js │ │ └── html5shiv.js ├── package.json ├── plugin │ ├── highlight │ │ └── highlight.js │ ├── markdown │ │ ├── example.md │ │ ├── markdown.js │ │ └── marked.js │ ├── math │ │ └── math.js │ ├── multiplex │ │ ├── client.js │ │ ├── index.js │ │ └── master.js │ ├── notes-server │ │ ├── client.js │ │ └── index.js │ ├── notes │ │ └── notes.js │ ├── print-pdf │ │ └── print-pdf.js │ ├── search │ │ └── search.js │ └── zoom-js │ │ └── zoom.js └── test │ ├── examples │ └── assets │ │ ├── image1.png │ │ └── image2.png │ ├── qunit-1.12.0.css │ ├── qunit-1.12.0.js │ ├── test-markdown-element-attributes.js │ ├── test-markdown-slide-attributes.js │ ├── test-markdown.js │ ├── test-pdf.js │ └── test.js ├── slides.md ├── tools └── filters │ ├── columnfilter.py │ ├── dump_links.py │ └── linkTable.hs └── video ├── Celegans_lateral_one_view_versus_deconvolved.mp4 ├── Celegans_lateral_one_view_versus_deconvolved.png └── Celegans_lateral_one_view_versus_deconvolved.webm /.gitignore: -------------------------------------------------------------------------------- 1 | #actual slides 2 | *html 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | 22 | # Compiled Static libraries 23 | *.lai 24 | *.la 25 | *.a 26 | *.lib 27 | 28 | # Executables 29 | *.exe 30 | *.out 31 | *.app 32 | 33 | figures/*aux 34 | figures/*log 35 | data/Rplots.pdf 36 | /code/cuda/vector_sum 37 | /tools/filters/linkTable.hi 38 | /tools/filters/linkTable 39 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | PANDOC ?= pandoc 2 | 3 | # Pandoc filters. 4 | FILTERS = $(wildcard tools/filters/*.py) 5 | 6 | all : index.html 7 | 8 | tools/filters/linkTable : tools/filters/linkTable.hs 9 | ghc $< 10 | 11 | index.html : slides.md links.md tools/filters/linkTable 12 | ${PANDOC} -s --no-highlight --highlight-style=espresso --template=pandoc-revealjs.template -t revealjs -o $@ -V revealjs-width:1600 -V transition=slide --section-divs --filter tools/filters/columnfilter.py $< links.md 13 | 14 | links.md : slides.md 15 | ${PANDOC} -t json $< | ./tools/filters/dump_links.py > $@ 16 | 17 | clean : 18 | rm -f links.md index.html 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # meetingcpp2015 2 | 3 | This is my repository for slides and code examples for my MeetingC++ talk, Dec 5th 2015, in Berlin. 4 | 5 | # Slides 6 | 7 | The slides can be viewed under [this URL](https://idisk.mpi-cbg.de/~steinbac/meetingcpp2015) or locally by opening index.html with a browser of your choice (chrome/chromium and firefox give the best results). 8 | 9 | # Video Recording 10 | 11 | A video recording of the talk is available on [youtube](https://www.youtube.com/watch?v=z43l_LaOqnM). 12 | 13 | # Dependencies 14 | 15 | If you wanto to buil the slides, you need: 16 | 17 | * pandoc 18 | * [pandocfilters](https://github.com/psteinb/pandocfilters) 19 | * texlive or similar latex suite 20 | * pgf (version 3.0 or higher) 21 | * GNU make 22 | 23 | If anything does not build, please let me know. 24 | 25 | The cude examples were tested under CUDA 7 and hcc/master of Dec 1st, 2015. 26 | 27 | # License 28 | 29 | 30 | Creative Commons License 31 |
32 | C++ on GPUs done right? by Peter Steinbach is licensed under a Creative Commons Attribution 4.0 International License. 33 | -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /bootstrap/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /code/cppamp/Makefile: -------------------------------------------------------------------------------- 1 | 2 | CLANG_AMP_BUILD_DIR ?= $(shell dirname `which clang++`/..) # where you build 3 | CLANG_AMP_HOME ?= $(CLANG_AMP_BUILD_DIR) # where you checkout source 4 | 5 | OPENCL_INC ?= /opt/AMDAPPSDK-3.0-0-Beta/include 6 | 7 | CLANG_AMP ?= $(shell which clang++) 8 | CLAMP_CONFIG ?= $(shell which clamp-config) 9 | CLAMP_CXXFLAGS=$(shell clamp-config --build --cxxflags) 10 | CLAMP_LDFLAGS =$(shell clamp-config --build --ldflags) 11 | 12 | SHARED_CXXFLAGS += $(CLAMP_GPU_CXXFLAGS) -I./include -I$(OPENCL_INC) 13 | 14 | CPP_FILES=$(wildcard *.cpp) 15 | TARGETS=$(CPP_FILES:%.cpp=%) 16 | 17 | all : $(TARGETS) 18 | 19 | % : %.cpp 20 | $(CLANG_AMP) $(SHARED_CXXFLAGS) $(CLAMP_CXXFLAGS) $(CLAMP_LDFLAGS) $< -o $@ -g 21 | 22 | print : 23 | @echo "CLANG_AMP \t" $(CLANG_AMP) 24 | @echo "CLANG_CONFIG \t" $(CLAMP_CONFIG) 25 | @echo "CLAMP_CXXFLAGS \t" $(CLAMP_CXXFLAGS) 26 | @echo "CLAMP_LDFLAGS \t" $(CLAMP_LDFLAGS) 27 | 28 | -------------------------------------------------------------------------------- /code/cppamp/vector_sum.cpp: -------------------------------------------------------------------------------- 1 | // RUN: clang++ `clamp-config --cxxflags --ldflags` vector_sum.cpp -o vector_sum 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include "amp.h" 7 | 8 | void amp_sum(std::vector& _va, 9 | const std::vector& _vb, 10 | float _scale) 11 | { 12 | 13 | concurrency::extent<1> ext_a(_va.size()), ext_b(_vb.size()); 14 | 15 | concurrency::array_view view_a(ext_a, _va); 16 | concurrency::array_view view_b(ext_b, _vb); 17 | 18 | parallel_for_each(view_a.get_extent(), 19 | [=](concurrency::index<1> idx) restrict(amp) 20 | { 21 | view_a[idx] = view_a[idx]*_scale + view_b[idx] ; 22 | } 23 | ); 24 | 25 | view_a.synchronize(); 26 | } 27 | 28 | int main(int argc, char *argv[]) 29 | { 30 | 31 | std::size_t vector_size = (1<<20); 32 | 33 | if(argc>1) 34 | vector_size*=std::stoi(argv[1]); 35 | 36 | std::cout << "vector sum: " << vector_size << " elements" << std::endl; 37 | 38 | std::vector host_a(vector_size,1.f); 39 | std::vector host_b(vector_size,2.f); 40 | const float host_d = 42.f; 41 | 42 | concurrency::accelerator default_device; 43 | amp_sum(host_a,host_b,host_d); 44 | 45 | float max_error = 0.0f; 46 | for (const float& item : host_a ) 47 | max_error = std::max(max_error, std::abs(item-44.0f)); 48 | 49 | std::cout << "Max error: " << max_error << std::endl; 50 | 51 | return 0; 52 | } 53 | -------------------------------------------------------------------------------- /code/cuda/Makefile: -------------------------------------------------------------------------------- 1 | 2 | #NVCC specific flags 3 | CUDA_FLAGS += --std=c++11 -m64 4 | 5 | #adapt to your architecture 6 | ARCH_FLAGS ?= -gencode arch=compute_20,code=sm_20 -gencode arch=compute_20,code=sm_21 -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 7 | 8 | NVCC ?= $(shell which nvcc) 9 | SRC_FILES=$(wildcard *.cu) 10 | DST_FILES=$(SRC_FILES:%.cu=%) 11 | 12 | all : $(DST_FILES) 13 | 14 | % : %.cu 15 | $(NVCC) $(CUDA_FLAGS) $(ARCH_FLAGS) $< -o $@ 16 | 17 | -------------------------------------------------------------------------------- /code/cuda/vector_sum.cu: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | 6 | __global__ void vector_sum(std::size_t _size, 7 | float _scale, 8 | float* _a, 9 | float* _b){ 10 | const std::size_t index = blockIdx.x*blockDim.x + threadIdx.x; 11 | if (index < _size) 12 | _a[index] = _scale*_a[index] + _b[index]; 13 | } 14 | 15 | int main(int argc, char *argv[]) 16 | { 17 | std::size_t vector_size = (1<<20); 18 | 19 | if(argc>1) 20 | vector_size*=std::stoi(argv[1]); 21 | 22 | std::cout << "vector sum: " << vector_size << " elements" << std::endl; 23 | 24 | std::vector host_a(vector_size,1.f); 25 | std::vector host_b(vector_size,2.f); 26 | const float host_d = 42.f; 27 | 28 | //gpu relevant code 29 | float * device_a=nullptr, *device_b=nullptr; 30 | 31 | const std::size_t vector_size_byte=vector_size*sizeof(float); 32 | cudaMalloc(&device_a, vector_size_byte); 33 | cudaMalloc(&device_b, vector_size_byte); 34 | cudaMemcpy(device_a, &host_a[0], vector_size_byte, 35 | cudaMemcpyHostToDevice); 36 | cudaMemcpy(device_b, &host_b[0], vector_size_byte, 37 | cudaMemcpyHostToDevice); 38 | 39 | vector_sum<<<(vector_size+255)/256, 256>>>(vector_size, 40 | host_d, 41 | device_a, 42 | device_b); 43 | 44 | cudaMemcpy(&host_a[0], device_a, vector_size_byte, 45 | cudaMemcpyDeviceToHost); 46 | 47 | float max_error = 0.0f; 48 | for (const float& item : host_a ) 49 | max_error = std::max(max_error, std::abs(item-44.0f)); 50 | 51 | std::cout << "Max error: " << max_error << std::endl; 52 | 53 | cudaFree(device_a); 54 | cudaFree(device_b); 55 | return 0; 56 | } 57 | -------------------------------------------------------------------------------- /code/thrust/Makefile: -------------------------------------------------------------------------------- 1 | 2 | #NVCC specific flags 3 | CUDA_FLAGS += --std=c++11 -m64 4 | 5 | #adapt to your architecture 6 | ARCH_FLAGS ?= -gencode arch=compute_20,code=sm_20 -gencode arch=compute_20,code=sm_21 -gencode arch=compute_30,code=sm_30 -gencode arch=compute_35,code=sm_35 7 | 8 | NVCC ?= $(shell which nvcc) 9 | SRC_FILES=$(wildcard *.cu) 10 | DST_FILES=$(SRC_FILES:%.cu=%) 11 | 12 | all : $(DST_FILES) 13 | 14 | % : %.cu 15 | $(NVCC) $(CUDA_FLAGS) $(ARCH_FLAGS) $< -o $@ 16 | 17 | -------------------------------------------------------------------------------- /code/thrust/vector_sum.cu: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | //#include 4 | #include 5 | #include 6 | #include 7 | #include 8 | 9 | struct saxpy_functor : public thrust::binary_function 10 | { 11 | const float a; 12 | 13 | saxpy_functor(float _a) : a(_a) {} 14 | 15 | __host__ __device__ 16 | float operator()(const float& x, const float& y) const { 17 | return a * x + y; 18 | } 19 | }; 20 | 21 | int main(int argc, char *argv[]) 22 | { 23 | std::size_t N = 1<<20; 24 | 25 | thrust::host_vector host_a(N,1.f); 26 | thrust::host_vector host_b(N,2.f); 27 | const float scale = 42.f; 28 | 29 | thrust::device_vector dev_a = host_a; 30 | thrust::device_vector dev_b = host_b; 31 | 32 | thrust::transform(dev_a.begin(), dev_a.end(), // input range #1 33 | dev_b.begin(), // input range #2 34 | dev_a.begin(), // output range 35 | saxpy_functor(scale)); // placeholder expression 36 | 37 | // thrust::transform(thrust::system::cuda::par, 38 | // dev_a.begin(), dev_a.end(), // input range #1 39 | // dev_b.begin(), // input range #2 40 | // dev_a.begin(), // output range 41 | // saxpy_functor(scale)); // placeholder expression 42 | 43 | host_a = dev_a; 44 | 45 | float max_error = 0.0f; 46 | for (const float& item : host_a ) 47 | max_error = std::max(max_error, std::abs(item-44.0f)); 48 | 49 | std::cout << "Max error: " << max_error << std::endl; 50 | return 0; 51 | } 52 | -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all : 201x_acc_fraction 3 | 4 | 201x_acc_fraction : TOP500_201206.csv TOP500_201211.csv TOP500_201306.csv TOP500_201311.csv TOP500_201406.csv TOP500_201411.csv TOP500_201506.csv TOP500_201511.csv 5 | ./plot.R $^ 6 | convert -resize 1200x 201x_acc_fraction.png 201x_acc_fraction_1200x.png 7 | 8 | clean : 201x_acc_fraction.png 201x_acc_fraction.svg 9 | rm -f $^ 10 | -------------------------------------------------------------------------------- /data/TOP500_201011.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201011.csv -------------------------------------------------------------------------------- /data/TOP500_201111.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201111.csv -------------------------------------------------------------------------------- /data/TOP500_201206.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201206.csv -------------------------------------------------------------------------------- /data/TOP500_201211.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201211.csv -------------------------------------------------------------------------------- /data/TOP500_201306.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201306.csv -------------------------------------------------------------------------------- /data/TOP500_201311.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201311.csv -------------------------------------------------------------------------------- /data/TOP500_201406.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201406.csv -------------------------------------------------------------------------------- /data/TOP500_201411.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201411.csv -------------------------------------------------------------------------------- /data/TOP500_201506.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201506.csv -------------------------------------------------------------------------------- /data/TOP500_201511.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/data/TOP500_201511.csv -------------------------------------------------------------------------------- /data/plot.R: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env Rscript 2 | 3 | argv = commandArgs(TRUE) 4 | 5 | if(length(argv) < 1){ 6 | stop("Usage: plot.R ") 7 | } 8 | 9 | top500_file <- argv[1] 10 | 11 | output_base <- sub(".data","",top500_file) 12 | 13 | #top500_datasets <- read.table(top500_file, header = T,stringsAsFactors=TRUE) 14 | library(stringr) 15 | top500_datasets <- lapply(argv[1:length(argv)], 16 | function(fn) { 17 | loaded <- read.csv(fn, header = T, stringsAsFactors = T) 18 | loaded$Top500_Year <- as.integer(str_extract(fn,"20[0-9]{2}")) 19 | ds_id <- str_extract(fn,"20[0-9]{4}") 20 | loaded$Top500_Month <- as.integer(substr(ds_id,5,7)) 21 | 22 | loaded 23 | } 24 | ) 25 | 26 | names(top500_datasets) <- argv[1:length(argv)] 27 | 28 | 29 | library(dplyr) 30 | 31 | merge.all <- function(x, y) { 32 | bind_rows(x, y) 33 | } 34 | 35 | top500_reduced <- Reduce(merge.all, top500_datasets) 36 | 37 | library(ggplot2) 38 | 39 | my_theme <- theme_bw() + theme(axis.title.x = element_text(size=20), 40 | axis.title.y = element_text(size=20), 41 | axis.text.x = element_text(size=16), 42 | axis.text.y = element_text(size=16), 43 | axis.text.x = element_text() 44 | ) 45 | 46 | 47 | my_theme <- my_theme + theme(line = element_line(colour = "black", size = 0.5, linetype = 1,lineend = "butt"), 48 | rect = element_rect(fill = "white", colour = "black", size = 0.5, linetype = 1), 49 | ## text = element_text(#family = base_family, face = "plain", 50 | ## colour = "black", size = 12#, 51 | ## #hjust = 0.5, vjust = 0.5, angle = 0, lineheight = 0.9 52 | ## ), 53 | axis.text = element_text(size = rel(0.8), colour = "white"), 54 | strip.text = element_text(size = rel(0.8), colour = "white"), 55 | 56 | axis.line = element_blank(), 57 | axis.text.x = element_text(vjust = 1), 58 | axis.text.y = element_text(hjust = 1), 59 | axis.ticks = element_line(colour = "white", size = 0.2), 60 | axis.title = element_text(colour = "white"), 61 | axis.title.x = element_text(vjust = .2), 62 | axis.title.y = element_text(angle = 90), 63 | # axis.ticks.length = unit(0.3, "lines"), 64 | ## axis.ticks.margin = unit(0.5, "lines"), 65 | 66 | legend.background = element_rect(colour = NA, fill="black",size=0), 67 | ## legend.margin = unit(0.2, "cm"), 68 | legend.key = element_rect(fill = "black", colour = "black"), 69 | ## legend.key.size = unit(1.2, "lines"), 70 | legend.key.height = NULL, 71 | legend.key.width = NULL, 72 | legend.text = element_text(size = 24, colour = "white"), 73 | legend.text.align = NULL, 74 | legend.title = element_text(size = rel(0.8), face = "bold", hjust = 0, colour = "black"), 75 | legend.title.align = NULL, 76 | legend.position = "right", 77 | legend.direction = "horizontal", 78 | legend.justification = "center", 79 | 80 | panel.background = element_rect(fill = "black", colour = NA), 81 | panel.border = element_rect(fill = NA, colour = "white"), 82 | panel.grid.major = element_line(colour = "grey20", size = 0.2), 83 | panel.grid.minor = element_line(colour = "grey5", size = 0.5), 84 | ## panel.margin = unit(0.25, "lines"), 85 | 86 | strip.background = element_rect(fill = "grey30", colour = "grey10"), 87 | strip.text.x = element_text(), 88 | strip.text.y = element_text(angle = -90), 89 | 90 | plot.background = element_rect(colour = "black", fill = "black"), 91 | plot.title = element_text(size = rel(1.2)), 92 | ## plot.margin = unit(c(1, 1, 0.5, 0.5), "lines"), 93 | 94 | complete = TRUE) 95 | 96 | my_theme <- my_theme + theme(legend.position="top", 97 | legend.box.just="left", 98 | legend.key = element_rect(colour = 'white', fill = 'black', size = 0., linetype='dashed'), 99 | legend.background = element_rect(colour = "white",fill="black")) 100 | 101 | 102 | items_2015 <- filter(top500_reduced,Top500_Year == 2015) 103 | 104 | with_acc_2015 <- filter(items_2015,Accelerator.Co.Processor != factor("None")) 105 | 106 | rank_limit <- 50 107 | top25_reduced <- filter(top500_reduced,Rank <= rank_limit) 108 | 109 | refine <- function(input_df){ 110 | input_df$merged_acc <- input_df$contained_co_proc 111 | input_df[is.na(input_df$merged_acc),]$merged_acc <- input_df[is.na(input_df$merged_acc),]$contained_acc 112 | input_df$acc_fraction <- input_df$merged_acc / input_df$occ 113 | input_df$date <- as.Date(paste(input_df$Top500_Year,input_df$Top500_Month,"1",sep="-")) 114 | input_df 115 | } 116 | 117 | top25 <- top25_reduced %>% group_by(Top500_Year, Top500_Month) %>% summarise(occ = n(), contained_co_proc = sum(Accelerator.Co.Processor != factor("None"))## , contained_acc = sum(!(Accelerator %in% factor("None"))) 118 | ) 119 | top25 <- refine(top25) 120 | top25$list <- factor(paste("Top",rank_limit,sep="")) 121 | #top25 122 | 123 | per_year <- top500_reduced %>% group_by(Top500_Year, Top500_Month) %>% summarise(occ = n(), contained_co_proc = sum(Accelerator.Co.Processor != factor("None"))## , contained_acc = sum(!(Accelerator %in% factor("None"))) 124 | ) 125 | per_year <- refine(per_year) 126 | per_year$list <- factor("Top500") 127 | #per_year 128 | 129 | compared <- rbind(per_year,top25) 130 | 131 | acc_plot <- ggplot(compared, aes(x=date,y=100*acc_fraction,color=list)) 132 | acc_plot <- acc_plot + geom_line(size=2) + ylim(0,50) 133 | acc_plot <- acc_plot + ylab("accelerated locations / %") + xlab("Year") 134 | acc_plot <- acc_plot + my_theme #+ guides(col=guide_legend(ncol=3)) 135 | acc_plot <- acc_plot + labs(fill="",color="") 136 | ggsave("201x_acc_fraction.png",acc_plot,width=8,height=5) 137 | ggsave("201x_acc_fraction.svg",acc_plot,width=8,height=5) 138 | -------------------------------------------------------------------------------- /figures/GK210_sm.tex: -------------------------------------------------------------------------------- 1 | % 2D Image with indices 2 | % Author: Peter Steinbach 3 | \documentclass[tikz]{standalone} 4 | %\documentclass[dvisvgm]{standalone} 5 | %\def\pgfsysdriver{pgfsys-tex4ht.def} 6 | \usepackage{tikz} 7 | \usepackage{units} 8 | \usetikzlibrary{calc,trees,positioning,arrows.meta,chains,shapes.geometric,shapes.arrows,% 9 | decorations.pathreplacing,decorations.pathmorphing,shapes,% 10 | matrix,shapes.symbols,fit,backgrounds} 11 | 12 | \pgfdeclarelayer{back} 13 | \pgfsetlayers{background,back,main} 14 | 15 | 16 | \makeatletter 17 | \makeatother 18 | 19 | \begin{document} 20 | \begin{tikzpicture}[block/.style={ 21 | draw, 22 | % fill=white, 23 | rectangle, 24 | text width={width("Read-Only Cache")+2cm}, 25 | align=center, 26 | font=\LARGE}, 27 | show background rectangle, 28 | background rectangle/.style={fill=black}, 29 | color=white, 30 | help lines/.style={color=lightgray,line width=.2pt}, 31 | ] 32 | 33 | \node (FUs) [very thick,draw,rectangle, minimum width={width("Functional")+.5cm}, minimum height=6cm,font=\huge,align=center] at(0,0) {Functional\\Units\\(192 CUDA Cores)}; 34 | 35 | \node (Regs) [very thick,draw,rectangle, minimum width={width("Register")+.5cm}, minimum height=6cm,font=\huge,align=center] at($(FUs.east)+(3,0)$) {Register\\File\\($\unit[64]{kB}$)}; 36 | 37 | \node [double arrow, draw, line width=1pt,font=\huge,inner xsep=.5cm,inner ysep=.3cm] at($(FUs.east)!.5!(Regs.west)$) {}; 38 | 39 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 40 | 41 | \node (ro_regs) at($(Regs.east) + (4,0)$) {}; 42 | 43 | \node (L1Cache) [block] at($(Regs.north east)+(5,-.4)$) {L1 Cache\\$\unit[16-48]{kB}$}; 44 | \node (ShMem) [block] at($(L1Cache.south)+(0,-1)$) {Shared Memory\\$\unit[16-48]{kB}$}; 45 | 46 | \node (RoCache) [block] at($(ShMem.south)-(0,1)$) {Read-Only Cache\\$\unit[48]{kB}$}; 47 | \node (ConstCache) [block] at($(RoCache.south)-(0,1)$) {Constant Cache\\$\unit[8]{kB}$}; 48 | 49 | 50 | 51 | \node [double arrow, draw, line width=1pt,font=\huge,inner xsep=.9cm,inner ysep=.2cm, double arrow head extend=.2cm] at($(L1Cache.west)+(-1.25,0)$) {}; 52 | 53 | \node [double arrow, draw, line width=1pt,font=\huge,inner xsep=.9cm,inner ysep=.2cm, double arrow head extend=.2cm] at($(ShMem.west)+(-1.25,0)$) {}; 54 | 55 | \node [double arrow, draw, line width=1pt,font=\huge,inner xsep=.9cm,inner ysep=.2cm, double arrow head extend=.2cm] at($(RoCache.west)+(-1.25,0)$) {}; 56 | 57 | \node [double arrow, draw, line width=1pt,font=\huge,inner xsep=.9cm,inner ysep=.2cm, double arrow head extend=.2cm] at($(ConstCache.west)+(-1.25,0)$) {}; 58 | 59 | \end{tikzpicture} 60 | \end{document} 61 | -------------------------------------------------------------------------------- /figures/K40.tex: -------------------------------------------------------------------------------- 1 | % 2D Image with indices 2 | % Author: Peter Steinbach 3 | \documentclass[tikz]{standalone} 4 | %\documentclass[dvisvgm]{standalone} 5 | %\def\pgfsysdriver{pgfsys-tex4ht.def} 6 | \usepackage{tikz} 7 | \usetikzlibrary{calc,trees,positioning,arrows.meta,chains,shapes.geometric,shapes.arrows,% 8 | decorations.pathreplacing,decorations.pathmorphing,shapes,% 9 | matrix,shapes.symbols,fit,backgrounds} 10 | 11 | \pgfdeclarelayer{back} 12 | \pgfsetlayers{background,back,main} 13 | 14 | 15 | \makeatletter 16 | \makeatother 17 | 18 | \begin{document} 19 | \begin{tikzpicture}[ 20 | show background rectangle, 21 | background rectangle/.style={fill=black}, 22 | color=white, 23 | help lines/.style={color=lightgray,line width=.2pt}, 24 | ] 25 | 26 | % \draw[dashed, very thick] (5,-1) rectangle (25,14) ; 27 | \foreach \c in {0,...,3} 28 | { 29 | %\draw[-] ($(0.2,2.05)+(2.4*\c,0)$) rectangle ($(2.3,2.75)+(2.4*\c,0)$) node[fitting node] (l2_\c) {\bfseries{}L2}; 30 | \node (smx_\c) [very thick,draw,rectangle, minimum width=3cm, minimum height=4cm,font=\huge] at($(8,10)+(3.5*\c,0)$) {}; 31 | \node [very thick,font=\huge,anchor=north] at(smx_\c.north) {\bfseries{}SMX}; 32 | \node (smx_\c_topright) [below =of smx_\c.north east] {}; 33 | \draw[step=.2] (smx_\c.south west) grid (smx_\c_topright); 34 | } 35 | 36 | 37 | 38 | \foreach \i in {0,...,4} 39 | \draw[-latex,very thick] ($(8,6)+(3.5*\i,0)$) -- ($(8,7.7)+(3.5*\i,0)$) 40 | ; 41 | 42 | \node (dots) [text=white,font=\huge] at($(8,10)+(14,0)$) {\bfseries{}$11\times$}; 43 | 44 | \draw[dashed,very thick] (6,-1) rectangle ($(dots)+(1.75,2.5)$); 45 | 46 | 47 | \draw[very thick] ($(8,6)$) -- ($(8,6)+(3.5*4,0)$) ; 48 | 49 | \node (l2cache) [very thick,draw,rectangle, minimum width=12cm, minimum height=2cm,font=\Huge] at($(8,10)+(7,-6)$) {\bfseries{}GPU L2 Cache}; 50 | \node (dram) [very thick,draw,rectangle, minimum width=12cm, minimum height=2cm,font=\Huge] at($(8,10)+(7,-9)$) {\bfseries{}GPU DRAM}; 51 | 52 | \node (cpu_ram) [very thick,draw,rectangle, minimum width=4.5cm, minimum height=12cm,font=\Huge] at($(0,10)+(0,-4)$) {\bfseries{}CPU RAM}; 53 | 54 | % \draw[ultra thick] (cpu_ram) -- (dram); 55 | 56 | %\draw[|<->|,very thick,double equal sign distance, line width=1mm, double distance=1.5mm,-Stealth] (dram.west) -- (cpu_ram.east); 57 | \node (middle) at($(dram.west)+(-3.2,0)$) {}; 58 | \node [double arrow, draw, fill=black,line width=2pt,font=\huge,inner xsep=.6cm,inner ysep=.3cm] at(middle) {PCI Express}; 59 | \draw[ultra thick] (l2cache.south) -- (dram.north); 60 | 61 | 62 | \draw[very thick] (dram) -- (l2cache); 63 | \draw[very thick] (l2cache) -- ($(8,6)+(7,0)$); 64 | 65 | 66 | \end{tikzpicture} 67 | \end{document} 68 | -------------------------------------------------------------------------------- /figures/Makefile: -------------------------------------------------------------------------------- 1 | 2 | 3 | SRC_FILES=$(wildcard *tex) 4 | SVG_FILES=$(SRC_FILES:.tex=.svg) 5 | PDF_FILES=$(SRC_FILES:.tex=.svg) 6 | 7 | all : $(SVG_FILES) $(PDF_FILES) 8 | 9 | %.pdf : %.tex 10 | pdflatex $< 11 | 12 | %.svg : %.pdf 13 | pdf2svg $< $@ 14 | 15 | clean: 16 | rm -rf *aux *log *svg *pdf 17 | -------------------------------------------------------------------------------- /figures/coalesced_mem_access.tex: -------------------------------------------------------------------------------- 1 | % 2D Image with indices 2 | % Author: Peter Steinbach 3 | \documentclass[tikz]{standalone} 4 | %\documentclass[dvisvgm]{standalone} 5 | %\def\pgfsysdriver{pgfsys-tex4ht.def} 6 | \usepackage{units} 7 | \usepackage{tikz} 8 | \usetikzlibrary{calc,math,trees,positioning,arrows.meta,chains,shapes.geometric,shapes.arrows,% 9 | decorations.pathreplacing,decorations.pathmorphing,shapes,% 10 | matrix,shapes.symbols,fit,backgrounds} 11 | 12 | \pgfdeclarelayer{back} 13 | \pgfsetlayers{background,back,main} 14 | 15 | 16 | \makeatletter 17 | \makeatother 18 | 19 | \begin{document} 20 | \begin{tikzpicture}[ 21 | show background rectangle, 22 | background rectangle/.style={fill=black}, 23 | color=white, 24 | help lines/.style={color=lightgray,line width=.2pt}, 25 | ] 26 | 27 | 28 | 29 | \foreach \t in {0,...,3} 30 | { 31 | \tikzmath{ 32 | integer \x; 33 | \x = \t+32; 34 | } 35 | %memory 36 | \node (mem_\t) [rectangle,draw=white,very thick,minimum width=1.cm,minimum height=1.cm,font=\Large] at($(0,0)+(1.2*\t,0)$) {$\x$}; 37 | 38 | %access 39 | \draw[->,very thick] ($(mem_\t.north) + (0,1.1)$) -- ($(mem_\t.north) + (0,.1)$); 40 | 41 | %label 42 | \node (label_\t) [draw=none,font=\huge,above] at($(mem_\t.north) + (0,1.1)$) {$T_{\t}$}; 43 | } 44 | 45 | \node (dots_between) [font=\Huge,anchor=west] at($(mem_3.east) + (0.1,0)$) {\dots}; 46 | 47 | \foreach \t in {0,...,3} 48 | { 49 | \tikzmath{ 50 | integer \x, \id, \j; 51 | \x = \t+30; 52 | \j = \t+28; 53 | \id = \t+60; 54 | } 55 | % memory 56 | \node (mem_\x) [rectangle,draw=white,very thick,minimum width=1.cm,minimum height=1.cm,font=\Large] at($(dots_between.east)+(.4,0)+(1.2*\t,0)$) {$\id$}; 57 | 58 | %access 59 | \draw[->,very thick] ($(mem_\x.north) + (0,1.1)$) -- ($(mem_\x.north) + (0,.1)$); 60 | 61 | %label 62 | \node (label_\x) [draw=none,font=\huge,above] at($(mem_\x.north) + (0,1.1)$) {$T_{\j}$}; 63 | } 64 | \draw[dashed,very thick] ($(mem_0.south west) + (-.1,-.1)$) rectangle ($(mem_33.north east) + (0.1,.1)$); 65 | 66 | 67 | %right cache line 68 | \foreach \t in {0,...,2} 69 | { 70 | %memory 71 | \tikzmath{ 72 | integer \id; 73 | \id = 64+\t; 74 | } 75 | \node (rcl_\t) [rectangle,draw=white,very thick,minimum width=1.cm,minimum height=1.cm,anchor=west,font=\Large] at($(mem_33.east)+(.3,0)+(1.2*\t,0)$) {$\id$}; 76 | } 77 | \draw[dashed,very thick] ($(rcl_0.south west) + (-.1,-.1)$) rectangle ($(rcl_2.north east) + (0.1,.1)$); 78 | 79 | %left cache line 80 | \foreach \t in {0,...,2} 81 | { 82 | \tikzmath{ 83 | integer \id; 84 | \id = 31-\t; 85 | } 86 | %memory 87 | \node (lcl_\t) [rectangle,draw=white,very thick,minimum width=1.cm,minimum height=1.cm,anchor=east,font=\Large] at($(mem_0.west)+(-.3,0)+(-1.2*\t,0)$) {$\id$}; 88 | } 89 | \draw[dashed,very thick,draw=white] ($(lcl_2.south west) + (-.1,-.1)$) rectangle ($(lcl_0.north east) + (.1,.1)$); 90 | 91 | \end{tikzpicture} 92 | \end{document} 93 | -------------------------------------------------------------------------------- /figures/gpu_cpu_dichotomy.tex: -------------------------------------------------------------------------------- 1 | % 2D Image with indices 2 | % Author: Peter Steinbach 3 | \documentclass[tikz]{standalone} 4 | %\documentclass[dvisvgm]{standalone} 5 | %\def\pgfsysdriver{pgfsys-tex4ht.def} 6 | \usepackage{units} 7 | \usepackage{tikz} 8 | \usetikzlibrary{calc,trees,positioning,arrows.meta,chains,shapes.geometric,shapes.arrows,% 9 | decorations.pathreplacing,decorations.pathmorphing,shapes,% 10 | matrix,shapes.symbols,fit,backgrounds} 11 | 12 | \pgfdeclarelayer{back} 13 | \pgfsetlayers{background,back,main} 14 | 15 | 16 | \makeatletter 17 | \makeatother 18 | 19 | \begin{document} 20 | \begin{tikzpicture}[ 21 | show background rectangle, 22 | background rectangle/.style={fill=black}, 23 | color=white, 24 | help lines/.style={color=lightgray,line width=.2pt}, 25 | ] 26 | 27 | \node (cpu) [rectangle,minimum width=2.2cm,minimum height=3.1cm,very thick,draw=white,anchor=south] at(-0.2,-0.2) {}; 28 | \node (cpu_name) [font=\huge,draw=none,below] at(cpu.north) {CPU}; 29 | \draw[thick,step=.8cm] ($(cpu.south west)+(.1,.1)$) grid ($(cpu.south east)+(-.1,2.1)$); 30 | 31 | \node (cpu_ram) [font=\huge,rectangle,minimum width=3.1cm,minimum height=2.1cm,very thick,draw=white,anchor=south] at($(cpu.south)-(0,4)$) {CPU Mem}; 32 | 33 | \node (gpu) [rectangle,minimum width=2.1cm,minimum height=3.1cm,very thick,draw=white,anchor=south] at(7,-.2) {}; 34 | \node (gpu_name) [font=\huge,draw=none,below] at(gpu.north) {GPU}; 35 | \draw[thick,step=.1cm] ($(gpu.south west)+(.1,.1)$) grid ($(gpu.south east)+(-.1,2.1)$); 36 | 37 | \node (gpu_ram) [font=\huge,rectangle,minimum width=3.1cm,minimum height=2.1cm,very thick,draw=white,anchor=south] at($(gpu.south)-(0,4)$) {GPU Mem}; 38 | 39 | \node (PCIexpress_arrow) [double arrow, draw=white,fill=red, line width=2pt,font=\Large,inner xsep=.2cm] at($(cpu_ram.east)!.5!(gpu_ram.west)$) {$\sim\unit[12]{GB/s}$}; 40 | \node (PCIexpress_name) [draw=none,font=\huge,below=1cm] at(PCIexpress_arrow.south) {PCIe v3 x16}; 41 | 42 | \node (gpumem_arrow) [double arrow, draw, line width=1pt,inner xsep=.6cm,font=\Large,rotate=-90] at($(gpu.south)!.5!(gpu_ram.north)$) {}; 43 | \node (gpumem_name) [draw=none,font=\huge] at($(gpu.south)!.5!(gpu_ram.north) + (2,0)$) {$\unit[320]{GB/s}$}; 44 | 45 | \node (cpumem_arrow) [double arrow, draw, line width=1pt,inner xsep=.6cm,font=\Large,rotate=-90] at($(cpu.south)!.5!(cpu_ram.north)$) {}; 46 | \node (cpumem_name) [draw=none,font=\huge] at($(cpu.south)!.5!(cpu_ram.north) + (-2,0)$) {$\unit[50]{GB/s}$}; 47 | 48 | % % \draw[dashed, very thick] (5,-1) rectangle (25,14) ; 49 | % \foreach \c in {0,...,3} 50 | % { 51 | % %\draw[-] ($(0.2,2.05)+(2.4*\c,0)$) rectangle ($(2.3,2.75)+(2.4*\c,0)$) node[fitting node] (l2_\c) {\bfseries{}L2}; 52 | % \node (smx_\c) [very thick,draw,rectangle, minimum width=3cm, minimum height=4cm,font=\huge] at($(8,10)+(3.5*\c,0)$) {}; 53 | % \node [very thick,font=\huge,anchor=north] at(smx_\c.north) {\bfseries{}SMX}; 54 | % \node (smx_\c_topright) [below =of smx_\c.north east] {}; 55 | % \draw[step=.2] (smx_\c.south west) grid (smx_\c_topright); 56 | % } 57 | 58 | % \foreach \i in {0,...,4} 59 | % \draw[-latex,very thick] ($(8,6)+(3.5*\i,0)$) -- ($(8,7.7)+(3.5*\i,0)$) 60 | % ; 61 | 62 | % \node (dots) [text=white,font=\huge] at($(8,10)+(14,0)$) {\bfseries{}\dots}; 63 | 64 | % \draw[very thick] ($(8,6)$) -- ($(8,6)+(3.5*4,0)$) ; 65 | 66 | % \node (l2cache) [very thick,draw,rectangle, minimum width=12cm, minimum height=2cm,font=\Huge] at($(8,10)+(7,-6)$) {\bfseries{}GPU L2 Cache}; 67 | % \node (dram) [very thick,draw,rectangle, minimum width=12cm, minimum height=2cm,font=\Huge] at($(8,10)+(7,-9)$) {\bfseries{}GPU DRAM}; 68 | 69 | % \node (cpu_ram) [very thick,draw,rectangle, minimum width=4.5cm, minimum height=12cm,font=\Huge] at($(0,10)+(0,-4)$) {\bfseries{}CPU RAM}; 70 | 71 | % % \draw[ultra thick] (cpu_ram) -- (dram); 72 | 73 | % %\draw[|<->|,very thick,double equal sign distance, line width=1mm, double distance=1.5mm,-Stealth] (dram.west) -- (cpu_ram.east); 74 | % \node (middle) at($(dram.west)+(-3.2,0)$) {}; 75 | % \node [double arrow, draw, line width=1pt,font=\huge,inner xsep=.6cm,inner ysep=.3cm] at(middle) {PIC Express}; 76 | % \draw[ultra thick] (l2cache.south) -- (dram.north); 77 | 78 | 79 | % \draw[very thick] (dram) -- (l2cache); 80 | % \draw[very thick] (l2cache) -- ($(8,6)+(7,0)$); 81 | 82 | 83 | \end{tikzpicture} 84 | \end{document} 85 | -------------------------------------------------------------------------------- /figures/grid_block.tex: -------------------------------------------------------------------------------- 1 | % 2D Image with indices 2 | % Author: Peter Steinbach 3 | \documentclass[tikz]{standalone} 4 | %\documentclass[dvisvgm]{standalone} 5 | %\def\pgfsysdriver{pgfsys-tex4ht.def} 6 | \usepackage{tikz} 7 | \usepackage{units} 8 | \usetikzlibrary{calc,trees,positioning,arrows.meta,chains,shapes.geometric,shapes.arrows,% 9 | decorations.pathreplacing,decorations.pathmorphing,shapes,% 10 | matrix,shapes.symbols,fit,backgrounds} 11 | 12 | \pgfdeclarelayer{back} 13 | \pgfsetlayers{background,back,main} 14 | 15 | 16 | \makeatletter 17 | \makeatother 18 | 19 | \begin{document} 20 | 21 | 22 | \begin{tikzpicture}[ 23 | show background rectangle, 24 | background rectangle/.style={fill=black}, 25 | color=white, 26 | help lines/.style={color=lightgray,line width=.2pt}, 27 | ] 28 | 29 | 30 | \foreach \g in {0,...,2} 31 | { 32 | 33 | % \draw[very thick, dashed] ($(-.4,-.4)+(2*\g,0)$) rectangle ($(1.6,2.2)+(2*\g,0) $); 34 | 35 | \foreach \b in {0,...,2} 36 | { 37 | \node (number_\b_\g) [rectangle,draw=white,very thick,inner sep=3pt] at ($(0,2)+(.6*\b,0)+(2.2*\g,0)$) {$32$}; 38 | 39 | % \draw[very thick] ($(-.2,1.6)+(.4*\b,0)+(2*\g,0)$) rectangle ($(.2,2.)+(.4*\b,0)+(2*\g,0)$); 40 | % \draw [->,very thick,decorate, decoration={snake,amplitude=.4mm,segment length=2mm,post length=1mm}] ($(0,1.5)+(.4*\b,0)+(2*\g,0)$) -- ($(0,0)+(.4*\b,0)+(2*\g,0)$); 41 | 42 | \draw [->,very thick,decorate, decoration={snake,amplitude=.4mm,segment length=2mm,post length=1mm}] (number_\b_\g.south) -- +(0,-2); 43 | } 44 | 45 | \coordinate (rect_top_right_\g) at($(number_2_\g.north east) + (.2,.2)$); 46 | \coordinate (rect_bottom_left_\g) at($(number_0_\g.south west) + (-.2,-2.2)$); 47 | \draw[very thick, dashed] (rect_bottom_left_\g) rectangle (rect_top_right_\g); 48 | } 49 | 50 | \end{tikzpicture} 51 | \end{document} 52 | -------------------------------------------------------------------------------- /figures/high_throughput_smx.tex: -------------------------------------------------------------------------------- 1 | % Author: Peter Steinbach 2 | \documentclass[tikz]{standalone} 3 | %\documentclass[dvisvgm]{standalone} 4 | %\def\pgfsysdriver{pgfsys-tex4ht.def} 5 | \usepackage{tikz} 6 | \usepackage{units} 7 | \usetikzlibrary{calc,trees,positioning,arrows.meta,chains,shapes.geometric,shapes.arrows,% 8 | decorations.pathreplacing,decorations.pathmorphing,shapes,% 9 | matrix,shapes.symbols,fit,backgrounds} 10 | 11 | \pgfdeclarelayer{back} 12 | \pgfsetlayers{background,back,main} 13 | 14 | 15 | \makeatletter 16 | \makeatother 17 | 18 | \begin{document} 19 | 20 | 21 | \begin{tikzpicture}[ 22 | show background rectangle, 23 | background rectangle/.style={fill=black}, 24 | color=white, 25 | help lines/.style={color=lightgray,line width=.2pt}, 26 | warp_work/.style={rectangle,very thick,inner sep=0pt,minimum height=1cm,fill=brown!80!green,draw=white,font=\huge,anchor=west}, 27 | warp_delay/.style={rectangle,very thick,inner sep=0pt,minimum height=1cm,fill=gray!20!black,draw=white,font=\huge,anchor=west}, 28 | warp_wait/.style={rectangle,very thick,inner sep=0pt,minimum height=1cm,fill=gray,draw=white,font=\huge,anchor=west} 29 | ] 30 | 31 | %warp 1 32 | \node (W_1_a) [warp_work,minimum width=1.5cm] at(0,.5) {$W_{1}$}; 33 | \node (W_1_delay_a) [warp_delay,minimum width=3.5cm] at(W_1_a.east) {}; 34 | \node (W_1_wait_a) [warp_wait,minimum width=.3cm] at(W_1_delay_a.east) {}; 35 | 36 | \node (W_1_b) [warp_work,minimum width=1.8cm] at(W_1_wait_a.east) {$W_{1}$}; 37 | \node (W_1_delay_b) [warp_delay,minimum width=3.5cm] at(W_1_b.east) {}; 38 | \node (W_1_wait_b) [warp_wait,minimum width=.25cm] at(W_1_delay_b.east) {}; 39 | 40 | %warp 2 41 | \node (W_2_a) [warp_work,minimum width=1.8cm] at($(W_1_a.north east)+(0,.5)$) {$W_{2}$}; 42 | \node (W_2_delay_a) [warp_delay,minimum width=3.5cm] at(W_2_a.east) {}; 43 | \node (W_2_wait_a) [warp_wait,minimum width=.3cm] at(W_2_delay_a.east) {}; 44 | 45 | \node (W_2_b) [warp_work,minimum width=1.5cm] at(W_2_wait_a.east) {$W_{2}$}; 46 | \node (W_2_delay_b) [warp_delay,minimum width=3.5cm] at(W_2_b.east) {}; 47 | \node (W_2_wait_b) [warp_wait,minimum width=.25cm] at(W_2_delay_b.east) {}; 48 | 49 | %warp 3 50 | \node (W_3_a) [warp_work,minimum width=1.9cm] at($(W_2_a.north east)+(0,.5)$) {$W_{3}$}; 51 | \node (W_3_delay_a) [warp_delay,minimum width=3.5cm] at(W_3_a.east) {}; 52 | 53 | \node (W_3_b) [warp_work,minimum width=2.2cm] at($(W_2_b.north east)+(0,.5)$) {$W_{3}$}; 54 | \node (W_3_delay_b) [warp_delay,minimum width=3.5cm] at(W_3_b.east) {}; 55 | \node (W_3_wait_b) [warp_wait,minimum width=.25cm] at(W_3_delay_b.east) {}; 56 | 57 | \node (W_3_dots) [font=\Huge,anchor=west] at(W_3_wait_b.east) {\bfseries{}\dots}; 58 | \node (W_2_dots) [font=\Huge,anchor=west] at(W_2_wait_b.east) {\bfseries{}\dots}; 59 | \node (W_1_dots) [font=\Huge,anchor=west] at(W_1_wait_b.east) {\bfseries{}\dots}; 60 | 61 | %legend 62 | \node (empty_work) [warp_work,minimum width=1.2cm,minimum height=.5cm] at($(W_1_delay_b.south)+(0,-1)$) {}; 63 | \node (label_work) [font=\normalsize,anchor=west] at (empty_work.east) {arithmetic}; 64 | 65 | \node (empty_delay) [warp_delay,minimum width=1.2cm,minimum height=.5cm] at($(label_work.east)+(.2,0)$) {}; 66 | \node (label_delay) [font=\normalsize,anchor=west] at (empty_delay.east) {gmem load}; 67 | 68 | \node (empty_wait) [warp_wait,minimum width=1.2cm,minimum height=.5cm] at($(label_delay.east)+(.2,0)$) {}; 69 | \node (label_wait) [font=\normalsize,anchor=west] at (empty_wait.east) {idle}; 70 | \end{tikzpicture} 71 | \end{document} 72 | -------------------------------------------------------------------------------- /figures/non_coalesced_mem_access.tex: -------------------------------------------------------------------------------- 1 | % 2D Image with indices 2 | % Author: Peter Steinbach 3 | \documentclass[tikz]{standalone} 4 | %\documentclass[dvisvgm]{standalone} 5 | %\def\pgfsysdriver{pgfsys-tex4ht.def} 6 | \usepackage{units} 7 | \usepackage{tikz} 8 | \usetikzlibrary{calc,math,trees,positioning,arrows.meta,chains,shapes.geometric,shapes.arrows,% 9 | decorations.pathreplacing,decorations.pathmorphing,shapes,% 10 | matrix,shapes.symbols,fit,backgrounds} 11 | 12 | \pgfdeclarelayer{back} 13 | \pgfsetlayers{background,back,main} 14 | 15 | 16 | \makeatletter 17 | \makeatother 18 | 19 | \begin{document} 20 | \begin{tikzpicture}[ 21 | show background rectangle, 22 | background rectangle/.style={fill=black}, 23 | color=white, 24 | help lines/.style={color=lightgray,line width=.2pt}, 25 | ] 26 | 27 | \node (line_0) [rectangle,dashed,draw=white,very thick,minimum width=4.5cm,minimum height=1.2cm,anchor=west,draw=blue] at($(0,0)+(0,0)$) {}; 28 | \node (line_1) [rectangle,dashed,draw=white,very thick,minimum width=4.5cm,minimum height=1.2cm,anchor=west,draw=orange] at($(0,0)+(4.7*1,0)$) {}; 29 | \node (line_2) [rectangle,dashed,draw=white,very thick,minimum width=4.5cm,minimum height=1.2cm,anchor=west,draw=green] at($(0,0)+(4.7*2,0)$) {}; 30 | \node (line_3) [rectangle,dashed,draw=white,very thick,minimum width=4.5cm,minimum height=1.2cm,anchor=west,draw=red] at($(0,0)+(4.7*3,0)$) {}; 31 | 32 | 33 | \foreach \c in {0,...,3} 34 | { 35 | % %cache line 36 | % \tikzmath{ 37 | % integer \id; 38 | % \id = 3*\c; 39 | % } 40 | 41 | \foreach \n in {0,...,2} 42 | { 43 | \tikzmath{ 44 | integer \id, \m; 45 | \id = (4*\c)+\n; 46 | \m = (32*\c)+\n; 47 | } 48 | 49 | \node (mem_\id) [rectangle,draw=white,very thick,minimum width=1.cm,minimum height=1.cm,anchor=west,font=\Large] at($(line_\c.west)+(.1,0) + (1.1*\n,0)$) {$\m$}; 50 | 51 | } 52 | 53 | \tikzmath{ 54 | integer \id; 55 | \id = (4*\c)+3; 56 | } 57 | \node (mem_\id) [rectangle,draw=white,very thick,minimum width=1.cm,minimum height=1.cm,anchor=west] at($(line_\c.west)+(3.4,0)$) {\bfseries{}\dots}; 58 | } 59 | 60 | \node (thread_0) [draw=none,font=\huge,above,text=blue] at($(mem_5.north) + (0,1.1)$) {$T_{0}$}; 61 | \draw[->,very thick,draw=blue] ($(thread_0.south) + (0,-.2)$) -- ($(mem_0.north) + (0,.1)$); 62 | 63 | \node (thread_1) [draw=none,font=\huge,above,text=red] at($(mem_7.north) + (0,1.1)$) {$T_{1}$}; 64 | \draw[->,very thick,draw=red] ($(thread_1.south) + (0,-.2)$) -- ($(mem_13.north) + (0,.1)$); 65 | 66 | \node (thread_2) [draw=none,font=\huge,above,text=orange] at($(mem_9.north) + (0,1.1)$) {$T_{2}$}; 67 | \draw[->,very thick,draw=orange] ($(thread_2.south) + (0,-.2)$) -- ($(mem_7.north) + (0,.1)$); 68 | 69 | \node (thread_3) [draw=none,font=\huge,above,text=green] at($(mem_11.north) + (0,1.1)$) {$T_{3}$}; 70 | \draw[->,very thick,draw=green] ($(thread_3.south) + (0,-.2)$) -- ($(mem_11.north) + (0,.1)$); 71 | 72 | \node (thread_dots) [draw=none,font=\huge] at($(thread_3.east) + (1.,0)$) {\bfseries{}\dots}; 73 | 74 | \end{tikzpicture} 75 | \end{document} 76 | -------------------------------------------------------------------------------- /figures/thread.svg: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /figures/thread.tex: -------------------------------------------------------------------------------- 1 | % 2D Image with indices 2 | % Author: Peter Steinbach 3 | \documentclass[tikz]{standalone} 4 | %\documentclass[dvisvgm]{standalone} 5 | %\def\pgfsysdriver{pgfsys-tex4ht.def} 6 | \usepackage{tikz} 7 | \usepackage{units} 8 | \usetikzlibrary{calc,trees,positioning,arrows.meta,chains,shapes.geometric,shapes.arrows,% 9 | decorations.pathreplacing,decorations.pathmorphing,shapes,% 10 | matrix,shapes.symbols,fit,backgrounds} 11 | 12 | \pgfdeclarelayer{back} 13 | \pgfsetlayers{background,back,main} 14 | 15 | 16 | \makeatletter 17 | \makeatother 18 | 19 | \begin{document} 20 | 21 | 22 | \begin{tikzpicture}[ 23 | show background rectangle, 24 | background rectangle/.style={fill=black}, 25 | color=white, 26 | help lines/.style={color=lightgray,line width=.2pt}, 27 | ] 28 | 29 | \node (number) [rectangle,draw=white,very thick,inner sep=3pt] at (0,2) {$32$}; 30 | % \draw[very thick] (-.2,1.6) rectangle (.2,2.); 31 | 32 | \draw [->,very thick,decorate, 33 | decoration={snake,amplitude=.4mm,segment length=2mm,post length=1mm}] 34 | (number.south) -- (0,0); 35 | 36 | 37 | \end{tikzpicture} 38 | \end{document} 39 | -------------------------------------------------------------------------------- /figures/thread_block.tex: -------------------------------------------------------------------------------- 1 | % 2D Image with indices 2 | % Author: Peter Steinbach 3 | \documentclass[tikz]{standalone} 4 | %\documentclass[dvisvgm]{standalone} 5 | %\def\pgfsysdriver{pgfsys-tex4ht.def} 6 | \usepackage{tikz} 7 | \usepackage{units} 8 | \usetikzlibrary{calc,trees,positioning,arrows.meta,chains,shapes.geometric,shapes.arrows,% 9 | decorations.pathreplacing,decorations.pathmorphing,shapes,% 10 | matrix,shapes.symbols,fit,backgrounds} 11 | 12 | \pgfdeclarelayer{back} 13 | \pgfsetlayers{background,back,main} 14 | 15 | 16 | \makeatletter 17 | \makeatother 18 | 19 | \begin{document} 20 | 21 | 22 | \begin{tikzpicture}[ 23 | show background rectangle, 24 | background rectangle/.style={fill=black}, 25 | color=white, 26 | help lines/.style={color=lightgray,line width=.2pt}, 27 | ] 28 | 29 | 30 | 31 | \foreach \c in {0,...,2} 32 | { 33 | %\draw[very thick] ($(-.2,1.6)+(.4*\c,0)$) rectangle ($(.2,2.)+(.4*\c,0)$); 34 | \node (number_\c) [rectangle,draw=white,very thick,inner sep=3pt] at ($(0,2)+(.6*\c,0)$) {$32$}; 35 | %\draw [->,very thick,decorate, decoration={snake,amplitude=.4mm,segment length=2mm,post length=1mm}] ($(0,1.5)+(.4*\c,0)$) -- ($(0,0)+(.4*\c,0)$); 36 | \draw [->,very thick,decorate, decoration={snake,amplitude=.4mm,segment length=2mm,post length=1mm}] (number_\c.south) -- +(0,-2); 37 | } 38 | 39 | %\draw[very thick, dashed] (2.4,2.4) rectangle (-.4,-.4); 40 | 41 | \coordinate (rect_top_right) at($(number_2.north east) + (.2,.2)$); 42 | \coordinate (rect_bottom_left) at($(number_0.south west) + (-.2,-2.2)$); 43 | \draw[very thick, dashed] (rect_bottom_left) rectangle (rect_top_right); 44 | 45 | 46 | \end{tikzpicture} 47 | \end{document} 48 | -------------------------------------------------------------------------------- /img/1024px-San_Francisco_Haight_Str_Guitar_Shop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1024px-San_Francisco_Haight_Str_Guitar_Shop.jpg -------------------------------------------------------------------------------- /img/1024px-School_of_Pterocaesio_chrysozona_in_Papua_New_Guinea_1_x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1024px-School_of_Pterocaesio_chrysozona_in_Papua_New_Guinea_1_x400.jpg -------------------------------------------------------------------------------- /img/1024px-Taylor415_acoustic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1024px-Taylor415_acoustic.jpg -------------------------------------------------------------------------------- /img/1024px-Thunnus_orientalis_Osaka_Kaiyukan_Aquarium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1024px-Thunnus_orientalis_Osaka_Kaiyukan_Aquarium.jpg -------------------------------------------------------------------------------- /img/1024px-Thunnus_orientalis_Osaka_Kaiyukan_Aquarium_cropped_x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1024px-Thunnus_orientalis_Osaka_Kaiyukan_Aquarium_cropped_x400.jpg -------------------------------------------------------------------------------- /img/1024px-Thunnus_orientalis_Osaka_Kaiyukan_Aquarium_x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1024px-Thunnus_orientalis_Osaka_Kaiyukan_Aquarium_x400.jpg -------------------------------------------------------------------------------- /img/1024px-Ukulele-electro-acoustic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1024px-Ukulele-electro-acoustic.jpg -------------------------------------------------------------------------------- /img/1024px-unmarked_holes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1024px-unmarked_holes.jpg -------------------------------------------------------------------------------- /img/1200x_K80_tech_powerup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1200x_K80_tech_powerup.jpg -------------------------------------------------------------------------------- /img/1200x_islay_overbright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1200x_islay_overbright.png -------------------------------------------------------------------------------- /img/1200x_islay_overbright_annotated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1200x_islay_overbright_annotated.png -------------------------------------------------------------------------------- /img/1290px_wikimedia_1937_radio_assembly_line.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/1290px_wikimedia_1937_radio_assembly_line.jpg -------------------------------------------------------------------------------- /img/400x_warning-42657_1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/400x_warning-42657_1280.png -------------------------------------------------------------------------------- /img/800px-MPI-CBG_building_outside_4pl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/800px-MPI-CBG_building_outside_4pl.jpg -------------------------------------------------------------------------------- /img/800px-San_Francisco_Haight_Str_Guitar_Shop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/800px-San_Francisco_Haight_Str_Guitar_Shop.jpg -------------------------------------------------------------------------------- /img/800x_warning-42657_1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/800x_warning-42657_1280.png -------------------------------------------------------------------------------- /img/Andy_McKee_January_2008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Andy_McKee_January_2008.jpg -------------------------------------------------------------------------------- /img/Automated_pipetting_system_using_manual_pipettes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Automated_pipetting_system_using_manual_pipettes.jpg -------------------------------------------------------------------------------- /img/Central-Processing-Unit.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Central-Processing-Unit.jpeg -------------------------------------------------------------------------------- /img/Central-Processing-Unit_x400.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Central-Processing-Unit_x400.jpeg -------------------------------------------------------------------------------- /img/Central-Processing-Unit_x600.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Central-Processing-Unit_x600.jpeg -------------------------------------------------------------------------------- /img/EDBF_European_Dragon_Boat_Championships_1996_in_Silkeborg,_Swedish_Mixed_Team_500m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/EDBF_European_Dragon_Boat_Championships_1996_in_Silkeborg,_Swedish_Mixed_Team_500m.jpg -------------------------------------------------------------------------------- /img/Elektrofryingpan_landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Elektrofryingpan_landscape.jpg -------------------------------------------------------------------------------- /img/NVIDIA-CUDA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/NVIDIA-CUDA.jpg -------------------------------------------------------------------------------- /img/Nvidia-Tesla-K80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Nvidia-Tesla-K80.jpg -------------------------------------------------------------------------------- /img/Nvidia-Tesla-K80_x200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Nvidia-Tesla-K80_x200.jpg -------------------------------------------------------------------------------- /img/Nvidia-Tesla-K80_x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Nvidia-Tesla-K80_x400.jpg -------------------------------------------------------------------------------- /img/OpenGL_White_500px_Nov14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/OpenGL_White_500px_Nov14.png -------------------------------------------------------------------------------- /img/OpenMP_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/OpenMP_logo.png -------------------------------------------------------------------------------- /img/Sleeping_students.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Sleeping_students.jpg -------------------------------------------------------------------------------- /img/Titan_render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Titan_render.png -------------------------------------------------------------------------------- /img/Vulkan_White_500px_Mar15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Vulkan_White_500px_Mar15.png -------------------------------------------------------------------------------- /img/Windows_Blue_Screen_on_room_full_of_computers.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/Windows_Blue_Screen_on_room_full_of_computers.JPG -------------------------------------------------------------------------------- /img/amd-firepro-s9150-server-graphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/amd-firepro-s9150-server-graphics.png -------------------------------------------------------------------------------- /img/amd-firepro-s9150-server-graphics_x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/amd-firepro-s9150-server-graphics_x200.png -------------------------------------------------------------------------------- /img/amd-firepro-s9150-server-graphics_x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/amd-firepro-s9150-server-graphics_x400.png -------------------------------------------------------------------------------- /img/apple-iphone-desk-office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/apple-iphone-desk-office.jpg -------------------------------------------------------------------------------- /img/apu_comic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/apu_comic.gif -------------------------------------------------------------------------------- /img/baseguitar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/baseguitar.jpg -------------------------------------------------------------------------------- /img/dark_and_books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/dark_and_books.jpg -------------------------------------------------------------------------------- /img/dragonboat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/dragonboat.jpg -------------------------------------------------------------------------------- /img/forage_fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/forage_fish.jpg -------------------------------------------------------------------------------- /img/forage_fish_x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/forage_fish_x400.jpg -------------------------------------------------------------------------------- /img/forage_fish_x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/forage_fish_x600.jpg -------------------------------------------------------------------------------- /img/gtc2015_mark_harris_beyond_cuda7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/gtc2015_mark_harris_beyond_cuda7.png -------------------------------------------------------------------------------- /img/islay_1024px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/islay_1024px.png -------------------------------------------------------------------------------- /img/islay_annotated_1024px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/islay_annotated_1024px.png -------------------------------------------------------------------------------- /img/islay_overbright.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/islay_overbright.xcf -------------------------------------------------------------------------------- /img/islay_overbright_annotated.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/islay_overbright_annotated.xcf -------------------------------------------------------------------------------- /img/khronos_road_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/khronos_road_map.png -------------------------------------------------------------------------------- /img/laser_experiment.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/laser_experiment.jpg -------------------------------------------------------------------------------- /img/logo-cpp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/logo-cpp.jpg -------------------------------------------------------------------------------- /img/monkey-452864_1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/monkey-452864_1920.jpg -------------------------------------------------------------------------------- /img/monkey-452864_450.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/monkey-452864_450.jpg -------------------------------------------------------------------------------- /img/monkey-452864_600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/monkey-452864_600.jpg -------------------------------------------------------------------------------- /img/nvidia_kepler_die_shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/nvidia_kepler_die_shot.jpg -------------------------------------------------------------------------------- /img/openacc_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/openacc_logo.jpg -------------------------------------------------------------------------------- /img/plos_best_practises_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/plos_best_practises_header.png -------------------------------------------------------------------------------- /img/shit_happens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/shit_happens.jpg -------------------------------------------------------------------------------- /img/software-carpentry-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/software-carpentry-banner.png -------------------------------------------------------------------------------- /img/staircase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/staircase.jpg -------------------------------------------------------------------------------- /img/thrust_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/thrust_logo.png -------------------------------------------------------------------------------- /img/titan_x_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/titan_x_small.png -------------------------------------------------------------------------------- /img/titan_x_small_x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/titan_x_small_x600.png -------------------------------------------------------------------------------- /img/touchscreen-guitar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/touchscreen-guitar.jpg -------------------------------------------------------------------------------- /img/tuna.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/tuna.jpg -------------------------------------------------------------------------------- /img/tuna_x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/tuna_x400.jpg -------------------------------------------------------------------------------- /img/tuna_x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/tuna_x600.jpg -------------------------------------------------------------------------------- /img/warning-42657_1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/warning-42657_1280.png -------------------------------------------------------------------------------- /img/xeon_phi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/xeon_phi.jpg -------------------------------------------------------------------------------- /img/xeon_phi_x200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/xeon_phi_x200.jpg -------------------------------------------------------------------------------- /img/xeon_phi_x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/img/xeon_phi_x400.jpg -------------------------------------------------------------------------------- /pandoc-revealjs.template: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | $for(author-meta)$ 7 | 8 | $endfor$ 9 | $if(date-meta)$ 10 | 11 | $endif$ 12 | $if(title-prefix)$$title-prefix$ - $endif$$pagetitle$ 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | $if(css)$ 22 | $for(css)$ 23 | 24 | $endfor$ 25 | $else$ 26 | 27 | $endif$ 28 | 29 | $if(highlighting-css)$ 30 | 33 | $else$ 34 | 35 | $endif$ 36 | 37 | 38 | 47 | 50 | $if(math)$ 51 | $math$ 52 | $endif$ 53 | $for(header-includes)$ 54 | $header-includes$ 55 | $endfor$ 56 | 57 | 58 | $for(include-before)$ 59 | $include-before$ 60 | $endfor$ 61 |
62 |
63 | 64 | $if(title)$ 65 |
66 |

$title$

67 | $if(subtitle)$ 68 |

- $subtitle$ -

69 | $endif$ 70 |

71 | $author$
72 | ($origin$)
73 | $email$ 74 |

75 |

76 | 77 |

$date$

78 |
79 | $endif$ 80 | $if(toc)$ 81 |
82 | $toc$ 83 |
84 | $endif$ 85 | 86 | $body$ 87 |
88 |
89 | 90 | 91 | 92 | 93 | 94 | 135 | $for(include-after)$ 136 | $include-after$ 137 | $endfor$ 138 | 139 | 140 | -------------------------------------------------------------------------------- /reveal.js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .svn 3 | log/*.log 4 | tmp/** 5 | node_modules/ 6 | .sass-cache 7 | css/reveal.min.css 8 | js/reveal.min.js 9 | -------------------------------------------------------------------------------- /reveal.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 4.1.1 4 | before_script: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /reveal.js/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Contributing 2 | 3 | Please keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**. 4 | 5 | 6 | ### Personal Support 7 | If you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js). 8 | 9 | 10 | ### Bug Reports 11 | When reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested. 12 | 13 | 14 | ### Pull Requests 15 | - Should follow the coding style of the file you work in, most importantly: 16 | - Tabs to indent 17 | - Single-quoted strings 18 | - Should be made towards the **dev branch** 19 | - Should be submitted from a feature/topic branch (not your master) 20 | 21 | 22 | ### Plugins 23 | Please do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines 24 | -------------------------------------------------------------------------------- /reveal.js/Gruntfile.js: -------------------------------------------------------------------------------- 1 | /* global module:false */ 2 | module.exports = function(grunt) { 3 | var port = grunt.option('port') || 8000; 4 | var base = grunt.option('base') || '.'; 5 | 6 | // Project configuration 7 | grunt.initConfig({ 8 | pkg: grunt.file.readJSON('package.json'), 9 | meta: { 10 | banner: 11 | '/*!\n' + 12 | ' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' + 13 | ' * http://lab.hakim.se/reveal-js\n' + 14 | ' * MIT licensed\n' + 15 | ' *\n' + 16 | ' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n' + 17 | ' */' 18 | }, 19 | 20 | qunit: { 21 | files: [ 'test/*.html' ] 22 | }, 23 | 24 | uglify: { 25 | options: { 26 | banner: '<%= meta.banner %>\n' 27 | }, 28 | build: { 29 | src: 'js/reveal.js', 30 | dest: 'js/reveal.min.js' 31 | } 32 | }, 33 | 34 | sass: { 35 | core: { 36 | files: { 37 | 'css/reveal.css': 'css/reveal.scss', 38 | } 39 | }, 40 | themes: { 41 | files: [ 42 | { 43 | expand: true, 44 | cwd: 'css/theme/source', 45 | src: ['*.scss'], 46 | dest: 'css/theme', 47 | ext: '.css' 48 | } 49 | ] 50 | } 51 | }, 52 | 53 | autoprefixer: { 54 | dist: { 55 | src: 'css/reveal.css' 56 | } 57 | }, 58 | 59 | cssmin: { 60 | compress: { 61 | files: { 62 | 'css/reveal.min.css': [ 'css/reveal.css' ] 63 | } 64 | } 65 | }, 66 | 67 | jshint: { 68 | options: { 69 | curly: false, 70 | eqeqeq: true, 71 | immed: true, 72 | latedef: true, 73 | newcap: true, 74 | noarg: true, 75 | sub: true, 76 | undef: true, 77 | eqnull: true, 78 | browser: true, 79 | expr: true, 80 | globals: { 81 | head: false, 82 | module: false, 83 | console: false, 84 | unescape: false, 85 | define: false, 86 | exports: false 87 | } 88 | }, 89 | files: [ 'Gruntfile.js', 'js/reveal.js' ] 90 | }, 91 | 92 | connect: { 93 | server: { 94 | options: { 95 | port: port, 96 | base: base, 97 | livereload: true, 98 | open: true 99 | } 100 | } 101 | }, 102 | 103 | zip: { 104 | 'reveal-js-presentation.zip': [ 105 | 'index.html', 106 | 'css/**', 107 | 'js/**', 108 | 'lib/**', 109 | 'images/**', 110 | 'plugin/**', 111 | '**.md' 112 | ] 113 | }, 114 | 115 | watch: { 116 | options: { 117 | livereload: true 118 | }, 119 | js: { 120 | files: [ 'Gruntfile.js', 'js/reveal.js' ], 121 | tasks: 'js' 122 | }, 123 | theme: { 124 | files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ], 125 | tasks: 'css-themes' 126 | }, 127 | css: { 128 | files: [ 'css/reveal.scss' ], 129 | tasks: 'css-core' 130 | }, 131 | html: { 132 | files: [ 'index.html'] 133 | }, 134 | markdown: { 135 | files: [ './*.md' ] 136 | } 137 | } 138 | 139 | }); 140 | 141 | // Dependencies 142 | grunt.loadNpmTasks( 'grunt-contrib-qunit' ); 143 | grunt.loadNpmTasks( 'grunt-contrib-jshint' ); 144 | grunt.loadNpmTasks( 'grunt-contrib-cssmin' ); 145 | grunt.loadNpmTasks( 'grunt-contrib-uglify' ); 146 | grunt.loadNpmTasks( 'grunt-contrib-watch' ); 147 | grunt.loadNpmTasks( 'grunt-sass' ); 148 | grunt.loadNpmTasks( 'grunt-contrib-connect' ); 149 | grunt.loadNpmTasks( 'grunt-autoprefixer' ); 150 | grunt.loadNpmTasks( 'grunt-zip' ); 151 | 152 | // Default task 153 | grunt.registerTask( 'default', [ 'css', 'js' ] ); 154 | 155 | // JS task 156 | grunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] ); 157 | 158 | // Theme CSS 159 | grunt.registerTask( 'css-themes', [ 'sass:themes' ] ); 160 | 161 | // Core framework CSS 162 | grunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] ); 163 | 164 | // All CSS 165 | grunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] ); 166 | 167 | // Package presentation to archive 168 | grunt.registerTask( 'package', [ 'default', 'zip' ] ); 169 | 170 | // Serve presentation locally 171 | grunt.registerTask( 'serve', [ 'connect', 'watch' ] ); 172 | 173 | // Run tests 174 | grunt.registerTask( 'test', [ 'jshint', 'qunit' ] ); 175 | 176 | }; 177 | -------------------------------------------------------------------------------- /reveal.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /reveal.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "reveal.js", 3 | "version": "3.1.0", 4 | "main": [ 5 | "js/reveal.js", 6 | "css/reveal.css" 7 | ], 8 | "homepage": "http://lab.hakim.se/reveal-js/", 9 | "license": "MIT", 10 | "description": "The HTML Presentation Framework", 11 | "authors": [ 12 | "Hakim El Hattab " 13 | ], 14 | "dependencies": { 15 | "headjs": "~1.0.3" 16 | }, 17 | "repository": { 18 | "type": "git", 19 | "url": "git://github.com/hakimel/reveal.js.git" 20 | }, 21 | "ignore": [ 22 | "**/.*", 23 | "node_modules", 24 | "bower_components", 25 | "test" 26 | ] 27 | } -------------------------------------------------------------------------------- /reveal.js/css/print/paper.css: -------------------------------------------------------------------------------- 1 | /* Default Print Stylesheet Template 2 | by Rob Glazebrook of CSSnewbie.com 3 | Last Updated: June 4, 2008 4 | 5 | Feel free (nay, compelled) to edit, append, and 6 | manipulate this file as you see fit. */ 7 | 8 | 9 | @media print { 10 | 11 | /* SECTION 1: Set default width, margin, float, and 12 | background. This prevents elements from extending 13 | beyond the edge of the printed page, and prevents 14 | unnecessary background images from printing */ 15 | html { 16 | background: #fff; 17 | width: auto; 18 | height: auto; 19 | overflow: visible; 20 | } 21 | body { 22 | background: #fff; 23 | font-size: 20pt; 24 | width: auto; 25 | height: auto; 26 | border: 0; 27 | margin: 0 5%; 28 | padding: 0; 29 | overflow: visible; 30 | float: none !important; 31 | } 32 | 33 | /* SECTION 2: Remove any elements not needed in print. 34 | This would include navigation, ads, sidebars, etc. */ 35 | .nestedarrow, 36 | .controls, 37 | .fork-reveal, 38 | .share-reveal, 39 | .state-background, 40 | .reveal .progress, 41 | .reveal .backgrounds { 42 | display: none !important; 43 | } 44 | 45 | /* SECTION 3: Set body font face, size, and color. 46 | Consider using a serif font for readability. */ 47 | body, p, td, li, div { 48 | font-size: 20pt!important; 49 | font-family: Georgia, "Times New Roman", Times, serif !important; 50 | color: #000; 51 | } 52 | 53 | /* SECTION 4: Set heading font face, sizes, and color. 54 | Differentiate your headings from your body text. 55 | Perhaps use a large sans-serif for distinction. */ 56 | h1,h2,h3,h4,h5,h6 { 57 | color: #000!important; 58 | height: auto; 59 | line-height: normal; 60 | font-family: Georgia, "Times New Roman", Times, serif !important; 61 | text-shadow: 0 0 0 #000 !important; 62 | text-align: left; 63 | letter-spacing: normal; 64 | } 65 | /* Need to reduce the size of the fonts for printing */ 66 | h1 { font-size: 28pt !important; } 67 | h2 { font-size: 24pt !important; } 68 | h3 { font-size: 22pt !important; } 69 | h4 { font-size: 22pt !important; font-variant: small-caps; } 70 | h5 { font-size: 21pt !important; } 71 | h6 { font-size: 20pt !important; font-style: italic; } 72 | 73 | /* SECTION 5: Make hyperlinks more usable. 74 | Ensure links are underlined, and consider appending 75 | the URL to the end of the link for usability. */ 76 | a:link, 77 | a:visited { 78 | color: #000 !important; 79 | font-weight: bold; 80 | text-decoration: underline; 81 | } 82 | /* 83 | .reveal a:link:after, 84 | .reveal a:visited:after { 85 | content: " (" attr(href) ") "; 86 | color: #222 !important; 87 | font-size: 90%; 88 | } 89 | */ 90 | 91 | 92 | /* SECTION 6: more reveal.js specific additions by @skypanther */ 93 | ul, ol, div, p { 94 | visibility: visible; 95 | position: static; 96 | width: auto; 97 | height: auto; 98 | display: block; 99 | overflow: visible; 100 | margin: 0; 101 | text-align: left !important; 102 | } 103 | .reveal pre, 104 | .reveal table { 105 | margin-left: 0; 106 | margin-right: 0; 107 | } 108 | .reveal pre code { 109 | padding: 20px; 110 | border: 1px solid #ddd; 111 | } 112 | .reveal blockquote { 113 | margin: 20px 0; 114 | } 115 | .reveal .slides { 116 | position: static !important; 117 | width: auto !important; 118 | height: auto !important; 119 | 120 | left: 0 !important; 121 | top: 0 !important; 122 | margin-left: 0 !important; 123 | margin-top: 0 !important; 124 | padding: 0 !important; 125 | zoom: 1 !important; 126 | 127 | overflow: visible !important; 128 | display: block !important; 129 | 130 | text-align: left !important; 131 | -webkit-perspective: none; 132 | -moz-perspective: none; 133 | -ms-perspective: none; 134 | perspective: none; 135 | 136 | -webkit-perspective-origin: 50% 50%; 137 | -moz-perspective-origin: 50% 50%; 138 | -ms-perspective-origin: 50% 50%; 139 | perspective-origin: 50% 50%; 140 | } 141 | .reveal .slides section { 142 | visibility: visible !important; 143 | position: static !important; 144 | width: 100% !important; 145 | height: auto !important; 146 | display: block !important; 147 | overflow: visible !important; 148 | 149 | left: 0 !important; 150 | top: 0 !important; 151 | margin-left: 0 !important; 152 | margin-top: 0 !important; 153 | padding: 60px 20px !important; 154 | z-index: auto !important; 155 | 156 | opacity: 1 !important; 157 | 158 | page-break-after: always !important; 159 | 160 | -webkit-transform-style: flat !important; 161 | -moz-transform-style: flat !important; 162 | -ms-transform-style: flat !important; 163 | transform-style: flat !important; 164 | 165 | -webkit-transform: none !important; 166 | -moz-transform: none !important; 167 | -ms-transform: none !important; 168 | transform: none !important; 169 | 170 | -webkit-transition: none !important; 171 | -moz-transition: none !important; 172 | -ms-transition: none !important; 173 | transition: none !important; 174 | } 175 | .reveal .slides section.stack { 176 | padding: 0 !important; 177 | } 178 | .reveal section:last-of-type { 179 | page-break-after: avoid !important; 180 | } 181 | .reveal section .fragment { 182 | opacity: 1 !important; 183 | visibility: visible !important; 184 | 185 | -webkit-transform: none !important; 186 | -moz-transform: none !important; 187 | -ms-transform: none !important; 188 | transform: none !important; 189 | } 190 | .reveal section img { 191 | display: block; 192 | margin: 15px 0px; 193 | background: rgba(255,255,255,1); 194 | border: 1px solid #666; 195 | box-shadow: none; 196 | } 197 | 198 | .reveal section small { 199 | font-size: 0.8em; 200 | } 201 | 202 | } -------------------------------------------------------------------------------- /reveal.js/css/print/pdf.css: -------------------------------------------------------------------------------- 1 | /** 2 | * This stylesheet is used to print reveal.js 3 | * presentations to PDF. 4 | * 5 | * https://github.com/hakimel/reveal.js#pdf-export 6 | */ 7 | 8 | * { 9 | -webkit-print-color-adjust: exact; 10 | } 11 | 12 | body { 13 | margin: 0 auto !important; 14 | border: 0; 15 | padding: 0; 16 | float: none !important; 17 | overflow: visible; 18 | } 19 | 20 | html { 21 | width: 100%; 22 | height: 100%; 23 | overflow: visible; 24 | } 25 | 26 | /* Remove any elements not needed in print. */ 27 | .nestedarrow, 28 | .reveal .controls, 29 | .reveal .progress, 30 | .reveal .playback, 31 | .reveal.overview, 32 | .fork-reveal, 33 | .share-reveal, 34 | .state-background { 35 | display: none !important; 36 | } 37 | 38 | h1, h2, h3, h4, h5, h6 { 39 | text-shadow: 0 0 0 #000 !important; 40 | } 41 | 42 | .reveal pre code { 43 | overflow: hidden !important; 44 | font-family: Courier, 'Courier New', monospace !important; 45 | } 46 | 47 | ul, ol, div, p { 48 | visibility: visible; 49 | position: static; 50 | width: auto; 51 | height: auto; 52 | display: block; 53 | overflow: visible; 54 | margin: auto; 55 | } 56 | .reveal { 57 | width: auto !important; 58 | height: auto !important; 59 | overflow: hidden !important; 60 | } 61 | .reveal .slides { 62 | position: static; 63 | width: 100%; 64 | height: auto; 65 | 66 | left: auto; 67 | top: auto; 68 | margin: 0 !important; 69 | padding: 0 !important; 70 | 71 | overflow: visible; 72 | display: block; 73 | 74 | -webkit-perspective: none; 75 | -moz-perspective: none; 76 | -ms-perspective: none; 77 | perspective: none; 78 | 79 | -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */ 80 | -moz-perspective-origin: 50% 50%; 81 | -ms-perspective-origin: 50% 50%; 82 | perspective-origin: 50% 50%; 83 | } 84 | 85 | .reveal .slides section { 86 | page-break-after: always !important; 87 | 88 | visibility: visible !important; 89 | position: relative !important; 90 | display: block !important; 91 | position: relative !important; 92 | 93 | margin: 0 !important; 94 | padding: 0 !important; 95 | box-sizing: border-box !important; 96 | min-height: 1px; 97 | 98 | opacity: 1 !important; 99 | 100 | -webkit-transform-style: flat !important; 101 | -moz-transform-style: flat !important; 102 | -ms-transform-style: flat !important; 103 | transform-style: flat !important; 104 | 105 | -webkit-transform: none !important; 106 | -moz-transform: none !important; 107 | -ms-transform: none !important; 108 | transform: none !important; 109 | } 110 | 111 | .reveal section.stack { 112 | margin: 0 !important; 113 | padding: 0 !important; 114 | page-break-after: avoid !important; 115 | height: auto !important; 116 | min-height: auto !important; 117 | } 118 | 119 | .reveal img { 120 | box-shadow: none; 121 | } 122 | 123 | .reveal .roll { 124 | overflow: visible; 125 | line-height: 1em; 126 | } 127 | 128 | /* Slide backgrounds are placed inside of their slide when exporting to PDF */ 129 | .reveal section .slide-background { 130 | display: block !important; 131 | position: absolute; 132 | top: 0; 133 | left: 0; 134 | width: 100%; 135 | z-index: -1; 136 | } 137 | 138 | /* All elements should be above the slide-background */ 139 | .reveal section>* { 140 | position: relative; 141 | z-index: 1; 142 | } 143 | 144 | /* Display slide speaker notes when 'showNotes' is enabled */ 145 | .reveal .speaker-notes-pdf { 146 | display: block; 147 | width: 100%; 148 | max-height: none; 149 | left: auto; 150 | top: auto; 151 | z-index: 100; 152 | } 153 | 154 | /* Display slide numbers when 'slideNumber' is enabled */ 155 | .reveal .slide-number { 156 | display: none; 157 | } 158 | .reveal .slide-number-pdf { 159 | display: block; 160 | position: absolute; 161 | font-size: 14px; 162 | } 163 | 164 | -------------------------------------------------------------------------------- /reveal.js/css/theme/README.md: -------------------------------------------------------------------------------- 1 | ## Dependencies 2 | 3 | Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup 4 | 5 | ## Creating a Theme 6 | 7 | To create your own theme, start by duplicating any ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source) and adding it to the compilation list in the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js). 8 | 9 | Each theme file does four things in the following order: 10 | 11 | 1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)** 12 | Shared utility functions. 13 | 14 | 2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)** 15 | Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3. 16 | 17 | 3. **Override** 18 | This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please. 19 | 20 | 4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)** 21 | The template theme file which will generate final CSS output based on the currently defined variables. 22 | 23 | When you are done, run `grunt css-themes` to compile the Sass file to CSS and you are ready to use your new theme. 24 | -------------------------------------------------------------------------------- /reveal.js/css/theme/black.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. This is the opposite of the 'white' theme. 3 | * 4 | * Copyright (C) 2015 Hakim El Hattab, http://hakim.se 5 | */ 6 | @import url(../../lib/font/source-sans-pro/source-sans-pro.css); 7 | section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 { 8 | color: #222; } 9 | 10 | /********************************************* 11 | * GLOBAL STYLES 12 | *********************************************/ 13 | body { 14 | background: #222; 15 | background-color: #222; } 16 | 17 | .reveal { 18 | font-family: "Source Sans Pro", Helvetica, sans-serif; 19 | font-size: 38px; 20 | font-weight: normal; 21 | color: #fff; } 22 | 23 | ::selection { 24 | color: #fff; 25 | background: #bee4fd; 26 | text-shadow: none; } 27 | 28 | .reveal .slides > section, 29 | .reveal .slides > section > section { 30 | line-height: 1.3; 31 | font-weight: inherit; } 32 | 33 | /********************************************* 34 | * HEADERS 35 | *********************************************/ 36 | .reveal h1, 37 | .reveal h2, 38 | .reveal h3, 39 | .reveal h4, 40 | .reveal h5, 41 | .reveal h6 { 42 | margin: 0 0 20px 0; 43 | color: #fff; 44 | font-family: "Source Sans Pro", Helvetica, sans-serif; 45 | font-weight: 600; 46 | line-height: 1.2; 47 | letter-spacing: normal; 48 | text-transform: uppercase; 49 | text-shadow: none; 50 | word-wrap: break-word; } 51 | 52 | .reveal h1 { 53 | font-size: 2.5em; } 54 | 55 | .reveal h2 { 56 | font-size: 1.6em; } 57 | 58 | .reveal h3 { 59 | font-size: 1.3em; } 60 | 61 | .reveal h4 { 62 | font-size: 1em; } 63 | 64 | .reveal h1 { 65 | text-shadow: none; } 66 | 67 | /********************************************* 68 | * OTHER 69 | *********************************************/ 70 | .reveal p { 71 | margin: 20px 0; 72 | line-height: 1.3; } 73 | 74 | /* Ensure certain elements are never larger than the slide itself */ 75 | .reveal img, 76 | .reveal video, 77 | .reveal iframe { 78 | max-width: 95%; 79 | max-height: 95%; } 80 | 81 | .reveal strong, 82 | .reveal b { 83 | font-weight: bold; } 84 | 85 | .reveal em { 86 | font-style: italic; } 87 | 88 | .reveal ol, 89 | .reveal dl, 90 | .reveal ul { 91 | display: inline-block; 92 | text-align: left; 93 | margin: 0 0 0 1em; } 94 | 95 | .reveal ol { 96 | list-style-type: decimal; } 97 | 98 | .reveal ul { 99 | list-style-type: disc; } 100 | 101 | .reveal ul ul { 102 | list-style-type: square; } 103 | 104 | .reveal ul ul ul { 105 | list-style-type: circle; } 106 | 107 | .reveal ul ul, 108 | .reveal ul ol, 109 | .reveal ol ol, 110 | .reveal ol ul { 111 | display: block; 112 | margin-left: 40px; } 113 | 114 | .reveal dt { 115 | font-weight: bold; } 116 | 117 | .reveal dd { 118 | margin-left: 40px; } 119 | 120 | .reveal q, 121 | .reveal blockquote { 122 | quotes: none; } 123 | 124 | .reveal blockquote { 125 | display: block; 126 | position: relative; 127 | width: 70%; 128 | margin: 20px auto; 129 | padding: 5px; 130 | font-style: italic; 131 | background: rgba(255, 255, 255, 0.05); 132 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } 133 | 134 | .reveal blockquote p:first-child, 135 | .reveal blockquote p:last-child { 136 | display: inline-block; } 137 | 138 | .reveal q { 139 | font-style: italic; } 140 | 141 | .reveal pre { 142 | display: block; 143 | position: relative; 144 | width: 90%; 145 | margin: 20px auto; 146 | text-align: left; 147 | font-size: 0.55em; 148 | font-family: monospace; 149 | line-height: 1.2em; 150 | word-wrap: break-word; 151 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } 152 | 153 | .reveal code { 154 | font-family: monospace; } 155 | 156 | .reveal pre code { 157 | display: block; 158 | padding: 5px; 159 | overflow: auto; 160 | max-height: 400px; 161 | word-wrap: normal; } 162 | 163 | .reveal table { 164 | margin: auto; 165 | border-collapse: collapse; 166 | border-spacing: 0; } 167 | 168 | .reveal table th { 169 | font-weight: bold; } 170 | 171 | .reveal table th, 172 | .reveal table td { 173 | text-align: left; 174 | padding: 0.2em 0.5em 0.2em 0.5em; 175 | border-bottom: 1px solid; } 176 | 177 | .reveal table th[align="center"], 178 | .reveal table td[align="center"] { 179 | text-align: center; } 180 | 181 | .reveal table th[align="right"], 182 | .reveal table td[align="right"] { 183 | text-align: right; } 184 | 185 | .reveal table tr:last-child td { 186 | border-bottom: none; } 187 | 188 | .reveal sup { 189 | vertical-align: super; } 190 | 191 | .reveal sub { 192 | vertical-align: sub; } 193 | 194 | .reveal small { 195 | display: inline-block; 196 | font-size: 0.6em; 197 | line-height: 1.2em; 198 | vertical-align: top; } 199 | 200 | .reveal small * { 201 | vertical-align: top; } 202 | 203 | /********************************************* 204 | * LINKS 205 | *********************************************/ 206 | .reveal a { 207 | color: #42affa; 208 | text-decoration: none; 209 | -webkit-transition: color 0.15s ease; 210 | -moz-transition: color 0.15s ease; 211 | transition: color 0.15s ease; } 212 | 213 | .reveal a:hover { 214 | color: #8dcffc; 215 | text-shadow: none; 216 | border: none; } 217 | 218 | .reveal .roll span:after { 219 | color: #fff; 220 | background: #068de9; } 221 | 222 | /********************************************* 223 | * IMAGES 224 | *********************************************/ 225 | .reveal section img { 226 | margin: 15px 0px; 227 | background: rgba(255, 255, 255, 0.12); 228 | border: 4px solid #fff; 229 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } 230 | 231 | .reveal section img.plain { 232 | border: 0; 233 | box-shadow: none; } 234 | 235 | .reveal a img { 236 | -webkit-transition: all 0.15s linear; 237 | -moz-transition: all 0.15s linear; 238 | transition: all 0.15s linear; } 239 | 240 | .reveal a:hover img { 241 | background: rgba(255, 255, 255, 0.2); 242 | border-color: #42affa; 243 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 244 | 245 | /********************************************* 246 | * NAVIGATION CONTROLS 247 | *********************************************/ 248 | .reveal .controls .navigate-left, 249 | .reveal .controls .navigate-left.enabled { 250 | border-right-color: #42affa; } 251 | 252 | .reveal .controls .navigate-right, 253 | .reveal .controls .navigate-right.enabled { 254 | border-left-color: #42affa; } 255 | 256 | .reveal .controls .navigate-up, 257 | .reveal .controls .navigate-up.enabled { 258 | border-bottom-color: #42affa; } 259 | 260 | .reveal .controls .navigate-down, 261 | .reveal .controls .navigate-down.enabled { 262 | border-top-color: #42affa; } 263 | 264 | .reveal .controls .navigate-left.enabled:hover { 265 | border-right-color: #8dcffc; } 266 | 267 | .reveal .controls .navigate-right.enabled:hover { 268 | border-left-color: #8dcffc; } 269 | 270 | .reveal .controls .navigate-up.enabled:hover { 271 | border-bottom-color: #8dcffc; } 272 | 273 | .reveal .controls .navigate-down.enabled:hover { 274 | border-top-color: #8dcffc; } 275 | 276 | /********************************************* 277 | * PROGRESS BAR 278 | *********************************************/ 279 | .reveal .progress { 280 | background: rgba(0, 0, 0, 0.2); } 281 | 282 | .reveal .progress span { 283 | background: #42affa; 284 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 285 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 286 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 287 | -------------------------------------------------------------------------------- /reveal.js/css/theme/moon.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Solarized Dark theme for reveal.js. 3 | * Author: Achim Staebler 4 | */ 5 | @import url(../../lib/font/league-gothic/league-gothic.css); 6 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 7 | /** 8 | * Solarized colors by Ethan Schoonover 9 | */ 10 | html * { 11 | color-profile: sRGB; 12 | rendering-intent: auto; } 13 | 14 | /********************************************* 15 | * GLOBAL STYLES 16 | *********************************************/ 17 | body { 18 | background: #002b36; 19 | background-color: #002b36; } 20 | 21 | .reveal { 22 | font-family: "Lato", sans-serif; 23 | font-size: 36px; 24 | font-weight: normal; 25 | color: #93a1a1; } 26 | 27 | ::selection { 28 | color: #fff; 29 | background: #d33682; 30 | text-shadow: none; } 31 | 32 | .reveal .slides > section, 33 | .reveal .slides > section > section { 34 | line-height: 1.3; 35 | font-weight: inherit; } 36 | 37 | /********************************************* 38 | * HEADERS 39 | *********************************************/ 40 | .reveal h1, 41 | .reveal h2, 42 | .reveal h3, 43 | .reveal h4, 44 | .reveal h5, 45 | .reveal h6 { 46 | margin: 0 0 20px 0; 47 | color: #eee8d5; 48 | font-family: "League Gothic", Impact, sans-serif; 49 | font-weight: normal; 50 | line-height: 1.2; 51 | letter-spacing: normal; 52 | text-transform: uppercase; 53 | text-shadow: none; 54 | word-wrap: break-word; } 55 | 56 | .reveal h1 { 57 | font-size: 3.77em; } 58 | 59 | .reveal h2 { 60 | font-size: 2.11em; } 61 | 62 | .reveal h3 { 63 | font-size: 1.55em; } 64 | 65 | .reveal h4 { 66 | font-size: 1em; } 67 | 68 | .reveal h1 { 69 | text-shadow: none; } 70 | 71 | /********************************************* 72 | * OTHER 73 | *********************************************/ 74 | .reveal p { 75 | margin: 20px 0; 76 | line-height: 1.3; } 77 | 78 | /* Ensure certain elements are never larger than the slide itself */ 79 | .reveal img, 80 | .reveal video, 81 | .reveal iframe { 82 | max-width: 95%; 83 | max-height: 95%; } 84 | 85 | .reveal strong, 86 | .reveal b { 87 | font-weight: bold; } 88 | 89 | .reveal em { 90 | font-style: italic; } 91 | 92 | .reveal ol, 93 | .reveal dl, 94 | .reveal ul { 95 | display: inline-block; 96 | text-align: left; 97 | margin: 0 0 0 1em; } 98 | 99 | .reveal ol { 100 | list-style-type: decimal; } 101 | 102 | .reveal ul { 103 | list-style-type: disc; } 104 | 105 | .reveal ul ul { 106 | list-style-type: square; } 107 | 108 | .reveal ul ul ul { 109 | list-style-type: circle; } 110 | 111 | .reveal ul ul, 112 | .reveal ul ol, 113 | .reveal ol ol, 114 | .reveal ol ul { 115 | display: block; 116 | margin-left: 40px; } 117 | 118 | .reveal dt { 119 | font-weight: bold; } 120 | 121 | .reveal dd { 122 | margin-left: 40px; } 123 | 124 | .reveal q, 125 | .reveal blockquote { 126 | quotes: none; } 127 | 128 | .reveal blockquote { 129 | display: block; 130 | position: relative; 131 | width: 70%; 132 | margin: 20px auto; 133 | padding: 5px; 134 | font-style: italic; 135 | background: rgba(255, 255, 255, 0.05); 136 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } 137 | 138 | .reveal blockquote p:first-child, 139 | .reveal blockquote p:last-child { 140 | display: inline-block; } 141 | 142 | .reveal q { 143 | font-style: italic; } 144 | 145 | .reveal pre { 146 | display: block; 147 | position: relative; 148 | width: 90%; 149 | margin: 20px auto; 150 | text-align: left; 151 | font-size: 0.55em; 152 | font-family: monospace; 153 | line-height: 1.2em; 154 | word-wrap: break-word; 155 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } 156 | 157 | .reveal code { 158 | font-family: monospace; } 159 | 160 | .reveal pre code { 161 | display: block; 162 | padding: 5px; 163 | overflow: auto; 164 | max-height: 400px; 165 | word-wrap: normal; } 166 | 167 | .reveal table { 168 | margin: auto; 169 | border-collapse: collapse; 170 | border-spacing: 0; } 171 | 172 | .reveal table th { 173 | font-weight: bold; } 174 | 175 | .reveal table th, 176 | .reveal table td { 177 | text-align: left; 178 | padding: 0.2em 0.5em 0.2em 0.5em; 179 | border-bottom: 1px solid; } 180 | 181 | .reveal table th[align="center"], 182 | .reveal table td[align="center"] { 183 | text-align: center; } 184 | 185 | .reveal table th[align="right"], 186 | .reveal table td[align="right"] { 187 | text-align: right; } 188 | 189 | .reveal table tr:last-child td { 190 | border-bottom: none; } 191 | 192 | .reveal sup { 193 | vertical-align: super; } 194 | 195 | .reveal sub { 196 | vertical-align: sub; } 197 | 198 | .reveal small { 199 | display: inline-block; 200 | font-size: 0.6em; 201 | line-height: 1.2em; 202 | vertical-align: top; } 203 | 204 | .reveal small * { 205 | vertical-align: top; } 206 | 207 | /********************************************* 208 | * LINKS 209 | *********************************************/ 210 | .reveal a { 211 | color: #268bd2; 212 | text-decoration: none; 213 | -webkit-transition: color 0.15s ease; 214 | -moz-transition: color 0.15s ease; 215 | transition: color 0.15s ease; } 216 | 217 | .reveal a:hover { 218 | color: #78b9e6; 219 | text-shadow: none; 220 | border: none; } 221 | 222 | .reveal .roll span:after { 223 | color: #fff; 224 | background: #1a6091; } 225 | 226 | /********************************************* 227 | * IMAGES 228 | *********************************************/ 229 | .reveal section img { 230 | margin: 15px 0px; 231 | background: rgba(255, 255, 255, 0.12); 232 | border: 4px solid #93a1a1; 233 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } 234 | 235 | .reveal section img.plain { 236 | border: 0; 237 | box-shadow: none; } 238 | 239 | .reveal a img { 240 | -webkit-transition: all 0.15s linear; 241 | -moz-transition: all 0.15s linear; 242 | transition: all 0.15s linear; } 243 | 244 | .reveal a:hover img { 245 | background: rgba(255, 255, 255, 0.2); 246 | border-color: #268bd2; 247 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 248 | 249 | /********************************************* 250 | * NAVIGATION CONTROLS 251 | *********************************************/ 252 | .reveal .controls .navigate-left, 253 | .reveal .controls .navigate-left.enabled { 254 | border-right-color: #268bd2; } 255 | 256 | .reveal .controls .navigate-right, 257 | .reveal .controls .navigate-right.enabled { 258 | border-left-color: #268bd2; } 259 | 260 | .reveal .controls .navigate-up, 261 | .reveal .controls .navigate-up.enabled { 262 | border-bottom-color: #268bd2; } 263 | 264 | .reveal .controls .navigate-down, 265 | .reveal .controls .navigate-down.enabled { 266 | border-top-color: #268bd2; } 267 | 268 | .reveal .controls .navigate-left.enabled:hover { 269 | border-right-color: #78b9e6; } 270 | 271 | .reveal .controls .navigate-right.enabled:hover { 272 | border-left-color: #78b9e6; } 273 | 274 | .reveal .controls .navigate-up.enabled:hover { 275 | border-bottom-color: #78b9e6; } 276 | 277 | .reveal .controls .navigate-down.enabled:hover { 278 | border-top-color: #78b9e6; } 279 | 280 | /********************************************* 281 | * PROGRESS BAR 282 | *********************************************/ 283 | .reveal .progress { 284 | background: rgba(0, 0, 0, 0.2); } 285 | 286 | .reveal .progress span { 287 | background: #268bd2; 288 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 289 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 290 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 291 | -------------------------------------------------------------------------------- /reveal.js/css/theme/night.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 7 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 8 | /********************************************* 9 | * GLOBAL STYLES 10 | *********************************************/ 11 | body { 12 | background: #111; 13 | background-color: #111; } 14 | 15 | .reveal { 16 | font-family: "Open Sans", sans-serif; 17 | font-size: 30px; 18 | font-weight: normal; 19 | color: #eee; } 20 | 21 | ::selection { 22 | color: #fff; 23 | background: #e7ad52; 24 | text-shadow: none; } 25 | 26 | .reveal .slides > section, 27 | .reveal .slides > section > section { 28 | line-height: 1.3; 29 | font-weight: inherit; } 30 | 31 | /********************************************* 32 | * HEADERS 33 | *********************************************/ 34 | .reveal h1, 35 | .reveal h2, 36 | .reveal h3, 37 | .reveal h4, 38 | .reveal h5, 39 | .reveal h6 { 40 | margin: 0 0 20px 0; 41 | color: #eee; 42 | font-family: "Montserrat", Impact, sans-serif; 43 | font-weight: normal; 44 | line-height: 1.2; 45 | letter-spacing: -0.03em; 46 | text-transform: none; 47 | text-shadow: none; 48 | word-wrap: break-word; } 49 | 50 | .reveal h1 { 51 | font-size: 3.77em; } 52 | 53 | .reveal h2 { 54 | font-size: 2.11em; } 55 | 56 | .reveal h3 { 57 | font-size: 1.55em; } 58 | 59 | .reveal h4 { 60 | font-size: 1em; } 61 | 62 | .reveal h1 { 63 | text-shadow: none; } 64 | 65 | /********************************************* 66 | * OTHER 67 | *********************************************/ 68 | .reveal p { 69 | margin: 20px 0; 70 | line-height: 1.3; } 71 | 72 | /* Ensure certain elements are never larger than the slide itself */ 73 | .reveal img, 74 | .reveal video, 75 | .reveal iframe { 76 | max-width: 95%; 77 | max-height: 95%; } 78 | 79 | .reveal strong, 80 | .reveal b { 81 | font-weight: bold; } 82 | 83 | .reveal em { 84 | font-style: italic; } 85 | 86 | .reveal ol, 87 | .reveal dl, 88 | .reveal ul { 89 | display: inline-block; 90 | text-align: left; 91 | margin: 0 0 0 1em; } 92 | 93 | .reveal ol { 94 | list-style-type: decimal; } 95 | 96 | .reveal ul { 97 | list-style-type: disc; } 98 | 99 | .reveal ul ul { 100 | list-style-type: square; } 101 | 102 | .reveal ul ul ul { 103 | list-style-type: circle; } 104 | 105 | .reveal ul ul, 106 | .reveal ul ol, 107 | .reveal ol ol, 108 | .reveal ol ul { 109 | display: block; 110 | margin-left: 40px; } 111 | 112 | .reveal dt { 113 | font-weight: bold; } 114 | 115 | .reveal dd { 116 | margin-left: 40px; } 117 | 118 | .reveal q, 119 | .reveal blockquote { 120 | quotes: none; } 121 | 122 | .reveal blockquote { 123 | display: block; 124 | position: relative; 125 | width: 70%; 126 | margin: 20px auto; 127 | padding: 5px; 128 | font-style: italic; 129 | background: rgba(255, 255, 255, 0.05); 130 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } 131 | 132 | .reveal blockquote p:first-child, 133 | .reveal blockquote p:last-child { 134 | display: inline-block; } 135 | 136 | .reveal q { 137 | font-style: italic; } 138 | 139 | .reveal pre { 140 | display: block; 141 | position: relative; 142 | width: 90%; 143 | margin: 20px auto; 144 | text-align: left; 145 | font-size: 0.55em; 146 | font-family: monospace; 147 | line-height: 1.2em; 148 | word-wrap: break-word; 149 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } 150 | 151 | .reveal code { 152 | font-family: monospace; } 153 | 154 | .reveal pre code { 155 | display: block; 156 | padding: 5px; 157 | overflow: auto; 158 | max-height: 400px; 159 | word-wrap: normal; } 160 | 161 | .reveal table { 162 | margin: auto; 163 | border-collapse: collapse; 164 | border-spacing: 0; } 165 | 166 | .reveal table th { 167 | font-weight: bold; } 168 | 169 | .reveal table th, 170 | .reveal table td { 171 | text-align: left; 172 | padding: 0.2em 0.5em 0.2em 0.5em; 173 | border-bottom: 1px solid; } 174 | 175 | .reveal table th[align="center"], 176 | .reveal table td[align="center"] { 177 | text-align: center; } 178 | 179 | .reveal table th[align="right"], 180 | .reveal table td[align="right"] { 181 | text-align: right; } 182 | 183 | .reveal table tr:last-child td { 184 | border-bottom: none; } 185 | 186 | .reveal sup { 187 | vertical-align: super; } 188 | 189 | .reveal sub { 190 | vertical-align: sub; } 191 | 192 | .reveal small { 193 | display: inline-block; 194 | font-size: 0.6em; 195 | line-height: 1.2em; 196 | vertical-align: top; } 197 | 198 | .reveal small * { 199 | vertical-align: top; } 200 | 201 | /********************************************* 202 | * LINKS 203 | *********************************************/ 204 | .reveal a { 205 | color: #e7ad52; 206 | text-decoration: none; 207 | -webkit-transition: color 0.15s ease; 208 | -moz-transition: color 0.15s ease; 209 | transition: color 0.15s ease; } 210 | 211 | .reveal a:hover { 212 | color: #f3d7ac; 213 | text-shadow: none; 214 | border: none; } 215 | 216 | .reveal .roll span:after { 217 | color: #fff; 218 | background: #d08a1d; } 219 | 220 | /********************************************* 221 | * IMAGES 222 | *********************************************/ 223 | .reveal section img { 224 | margin: 15px 0px; 225 | background: rgba(255, 255, 255, 0.12); 226 | border: 4px solid #eee; 227 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } 228 | 229 | .reveal section img.plain { 230 | border: 0; 231 | box-shadow: none; } 232 | 233 | .reveal a img { 234 | -webkit-transition: all 0.15s linear; 235 | -moz-transition: all 0.15s linear; 236 | transition: all 0.15s linear; } 237 | 238 | .reveal a:hover img { 239 | background: rgba(255, 255, 255, 0.2); 240 | border-color: #e7ad52; 241 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 242 | 243 | /********************************************* 244 | * NAVIGATION CONTROLS 245 | *********************************************/ 246 | .reveal .controls .navigate-left, 247 | .reveal .controls .navigate-left.enabled { 248 | border-right-color: #e7ad52; } 249 | 250 | .reveal .controls .navigate-right, 251 | .reveal .controls .navigate-right.enabled { 252 | border-left-color: #e7ad52; } 253 | 254 | .reveal .controls .navigate-up, 255 | .reveal .controls .navigate-up.enabled { 256 | border-bottom-color: #e7ad52; } 257 | 258 | .reveal .controls .navigate-down, 259 | .reveal .controls .navigate-down.enabled { 260 | border-top-color: #e7ad52; } 261 | 262 | .reveal .controls .navigate-left.enabled:hover { 263 | border-right-color: #f3d7ac; } 264 | 265 | .reveal .controls .navigate-right.enabled:hover { 266 | border-left-color: #f3d7ac; } 267 | 268 | .reveal .controls .navigate-up.enabled:hover { 269 | border-bottom-color: #f3d7ac; } 270 | 271 | .reveal .controls .navigate-down.enabled:hover { 272 | border-top-color: #f3d7ac; } 273 | 274 | /********************************************* 275 | * PROGRESS BAR 276 | *********************************************/ 277 | .reveal .progress { 278 | background: rgba(0, 0, 0, 0.2); } 279 | 280 | .reveal .progress span { 281 | background: #e7ad52; 282 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 283 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 284 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 285 | -------------------------------------------------------------------------------- /reveal.js/css/theme/serif.css: -------------------------------------------------------------------------------- 1 | /** 2 | * A simple theme for reveal.js presentations, similar 3 | * to the default theme. The accent color is brown. 4 | * 5 | * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. 6 | */ 7 | .reveal a { 8 | line-height: 1.3em; } 9 | 10 | /********************************************* 11 | * GLOBAL STYLES 12 | *********************************************/ 13 | body { 14 | background: #F0F1EB; 15 | background-color: #F0F1EB; } 16 | 17 | .reveal { 18 | font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; 19 | font-size: 36px; 20 | font-weight: normal; 21 | color: #000; } 22 | 23 | ::selection { 24 | color: #fff; 25 | background: #26351C; 26 | text-shadow: none; } 27 | 28 | .reveal .slides > section, 29 | .reveal .slides > section > section { 30 | line-height: 1.3; 31 | font-weight: inherit; } 32 | 33 | /********************************************* 34 | * HEADERS 35 | *********************************************/ 36 | .reveal h1, 37 | .reveal h2, 38 | .reveal h3, 39 | .reveal h4, 40 | .reveal h5, 41 | .reveal h6 { 42 | margin: 0 0 20px 0; 43 | color: #383D3D; 44 | font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; 45 | font-weight: normal; 46 | line-height: 1.2; 47 | letter-spacing: normal; 48 | text-transform: none; 49 | text-shadow: none; 50 | word-wrap: break-word; } 51 | 52 | .reveal h1 { 53 | font-size: 3.77em; } 54 | 55 | .reveal h2 { 56 | font-size: 2.11em; } 57 | 58 | .reveal h3 { 59 | font-size: 1.55em; } 60 | 61 | .reveal h4 { 62 | font-size: 1em; } 63 | 64 | .reveal h1 { 65 | text-shadow: none; } 66 | 67 | /********************************************* 68 | * OTHER 69 | *********************************************/ 70 | .reveal p { 71 | margin: 20px 0; 72 | line-height: 1.3; } 73 | 74 | /* Ensure certain elements are never larger than the slide itself */ 75 | .reveal img, 76 | .reveal video, 77 | .reveal iframe { 78 | max-width: 95%; 79 | max-height: 95%; } 80 | 81 | .reveal strong, 82 | .reveal b { 83 | font-weight: bold; } 84 | 85 | .reveal em { 86 | font-style: italic; } 87 | 88 | .reveal ol, 89 | .reveal dl, 90 | .reveal ul { 91 | display: inline-block; 92 | text-align: left; 93 | margin: 0 0 0 1em; } 94 | 95 | .reveal ol { 96 | list-style-type: decimal; } 97 | 98 | .reveal ul { 99 | list-style-type: disc; } 100 | 101 | .reveal ul ul { 102 | list-style-type: square; } 103 | 104 | .reveal ul ul ul { 105 | list-style-type: circle; } 106 | 107 | .reveal ul ul, 108 | .reveal ul ol, 109 | .reveal ol ol, 110 | .reveal ol ul { 111 | display: block; 112 | margin-left: 40px; } 113 | 114 | .reveal dt { 115 | font-weight: bold; } 116 | 117 | .reveal dd { 118 | margin-left: 40px; } 119 | 120 | .reveal q, 121 | .reveal blockquote { 122 | quotes: none; } 123 | 124 | .reveal blockquote { 125 | display: block; 126 | position: relative; 127 | width: 70%; 128 | margin: 20px auto; 129 | padding: 5px; 130 | font-style: italic; 131 | background: rgba(255, 255, 255, 0.05); 132 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } 133 | 134 | .reveal blockquote p:first-child, 135 | .reveal blockquote p:last-child { 136 | display: inline-block; } 137 | 138 | .reveal q { 139 | font-style: italic; } 140 | 141 | .reveal pre { 142 | display: block; 143 | position: relative; 144 | width: 90%; 145 | margin: 20px auto; 146 | text-align: left; 147 | font-size: 0.55em; 148 | font-family: monospace; 149 | line-height: 1.2em; 150 | word-wrap: break-word; 151 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } 152 | 153 | .reveal code { 154 | font-family: monospace; } 155 | 156 | .reveal pre code { 157 | display: block; 158 | padding: 5px; 159 | overflow: auto; 160 | max-height: 400px; 161 | word-wrap: normal; } 162 | 163 | .reveal table { 164 | margin: auto; 165 | border-collapse: collapse; 166 | border-spacing: 0; } 167 | 168 | .reveal table th { 169 | font-weight: bold; } 170 | 171 | .reveal table th, 172 | .reveal table td { 173 | text-align: left; 174 | padding: 0.2em 0.5em 0.2em 0.5em; 175 | border-bottom: 1px solid; } 176 | 177 | .reveal table th[align="center"], 178 | .reveal table td[align="center"] { 179 | text-align: center; } 180 | 181 | .reveal table th[align="right"], 182 | .reveal table td[align="right"] { 183 | text-align: right; } 184 | 185 | .reveal table tr:last-child td { 186 | border-bottom: none; } 187 | 188 | .reveal sup { 189 | vertical-align: super; } 190 | 191 | .reveal sub { 192 | vertical-align: sub; } 193 | 194 | .reveal small { 195 | display: inline-block; 196 | font-size: 0.6em; 197 | line-height: 1.2em; 198 | vertical-align: top; } 199 | 200 | .reveal small * { 201 | vertical-align: top; } 202 | 203 | /********************************************* 204 | * LINKS 205 | *********************************************/ 206 | .reveal a { 207 | color: #51483D; 208 | text-decoration: none; 209 | -webkit-transition: color 0.15s ease; 210 | -moz-transition: color 0.15s ease; 211 | transition: color 0.15s ease; } 212 | 213 | .reveal a:hover { 214 | color: #8b7c69; 215 | text-shadow: none; 216 | border: none; } 217 | 218 | .reveal .roll span:after { 219 | color: #fff; 220 | background: #25211c; } 221 | 222 | /********************************************* 223 | * IMAGES 224 | *********************************************/ 225 | .reveal section img { 226 | margin: 15px 0px; 227 | background: rgba(255, 255, 255, 0.12); 228 | border: 4px solid #000; 229 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } 230 | 231 | .reveal section img.plain { 232 | border: 0; 233 | box-shadow: none; } 234 | 235 | .reveal a img { 236 | -webkit-transition: all 0.15s linear; 237 | -moz-transition: all 0.15s linear; 238 | transition: all 0.15s linear; } 239 | 240 | .reveal a:hover img { 241 | background: rgba(255, 255, 255, 0.2); 242 | border-color: #51483D; 243 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 244 | 245 | /********************************************* 246 | * NAVIGATION CONTROLS 247 | *********************************************/ 248 | .reveal .controls .navigate-left, 249 | .reveal .controls .navigate-left.enabled { 250 | border-right-color: #51483D; } 251 | 252 | .reveal .controls .navigate-right, 253 | .reveal .controls .navigate-right.enabled { 254 | border-left-color: #51483D; } 255 | 256 | .reveal .controls .navigate-up, 257 | .reveal .controls .navigate-up.enabled { 258 | border-bottom-color: #51483D; } 259 | 260 | .reveal .controls .navigate-down, 261 | .reveal .controls .navigate-down.enabled { 262 | border-top-color: #51483D; } 263 | 264 | .reveal .controls .navigate-left.enabled:hover { 265 | border-right-color: #8b7c69; } 266 | 267 | .reveal .controls .navigate-right.enabled:hover { 268 | border-left-color: #8b7c69; } 269 | 270 | .reveal .controls .navigate-up.enabled:hover { 271 | border-bottom-color: #8b7c69; } 272 | 273 | .reveal .controls .navigate-down.enabled:hover { 274 | border-top-color: #8b7c69; } 275 | 276 | /********************************************* 277 | * PROGRESS BAR 278 | *********************************************/ 279 | .reveal .progress { 280 | background: rgba(0, 0, 0, 0.2); } 281 | 282 | .reveal .progress span { 283 | background: #51483D; 284 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 285 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 286 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 287 | -------------------------------------------------------------------------------- /reveal.js/css/theme/simple.css: -------------------------------------------------------------------------------- 1 | /** 2 | * A simple theme for reveal.js presentations, similar 3 | * to the default theme. The accent color is darkblue. 4 | * 5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. 6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 7 | */ 8 | @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); 9 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 10 | /********************************************* 11 | * GLOBAL STYLES 12 | *********************************************/ 13 | body { 14 | background: #fff; 15 | background-color: #fff; } 16 | 17 | .reveal { 18 | font-family: "Lato", sans-serif; 19 | font-size: 36px; 20 | font-weight: normal; 21 | color: #000; } 22 | 23 | ::selection { 24 | color: #fff; 25 | background: rgba(0, 0, 0, 0.99); 26 | text-shadow: none; } 27 | 28 | .reveal .slides > section, 29 | .reveal .slides > section > section { 30 | line-height: 1.3; 31 | font-weight: inherit; } 32 | 33 | /********************************************* 34 | * HEADERS 35 | *********************************************/ 36 | .reveal h1, 37 | .reveal h2, 38 | .reveal h3, 39 | .reveal h4, 40 | .reveal h5, 41 | .reveal h6 { 42 | margin: 0 0 20px 0; 43 | color: #000; 44 | font-family: "News Cycle", Impact, sans-serif; 45 | font-weight: normal; 46 | line-height: 1.2; 47 | letter-spacing: normal; 48 | text-transform: none; 49 | text-shadow: none; 50 | word-wrap: break-word; } 51 | 52 | .reveal h1 { 53 | font-size: 3.77em; } 54 | 55 | .reveal h2 { 56 | font-size: 2.11em; } 57 | 58 | .reveal h3 { 59 | font-size: 1.55em; } 60 | 61 | .reveal h4 { 62 | font-size: 1em; } 63 | 64 | .reveal h1 { 65 | text-shadow: none; } 66 | 67 | /********************************************* 68 | * OTHER 69 | *********************************************/ 70 | .reveal p { 71 | margin: 20px 0; 72 | line-height: 1.3; } 73 | 74 | /* Ensure certain elements are never larger than the slide itself */ 75 | .reveal img, 76 | .reveal video, 77 | .reveal iframe { 78 | max-width: 95%; 79 | max-height: 95%; } 80 | 81 | .reveal strong, 82 | .reveal b { 83 | font-weight: bold; } 84 | 85 | .reveal em { 86 | font-style: italic; } 87 | 88 | .reveal ol, 89 | .reveal dl, 90 | .reveal ul { 91 | display: inline-block; 92 | text-align: left; 93 | margin: 0 0 0 1em; } 94 | 95 | .reveal ol { 96 | list-style-type: decimal; } 97 | 98 | .reveal ul { 99 | list-style-type: disc; } 100 | 101 | .reveal ul ul { 102 | list-style-type: square; } 103 | 104 | .reveal ul ul ul { 105 | list-style-type: circle; } 106 | 107 | .reveal ul ul, 108 | .reveal ul ol, 109 | .reveal ol ol, 110 | .reveal ol ul { 111 | display: block; 112 | margin-left: 40px; } 113 | 114 | .reveal dt { 115 | font-weight: bold; } 116 | 117 | .reveal dd { 118 | margin-left: 40px; } 119 | 120 | .reveal q, 121 | .reveal blockquote { 122 | quotes: none; } 123 | 124 | .reveal blockquote { 125 | display: block; 126 | position: relative; 127 | width: 70%; 128 | margin: 20px auto; 129 | padding: 5px; 130 | font-style: italic; 131 | background: rgba(255, 255, 255, 0.05); 132 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } 133 | 134 | .reveal blockquote p:first-child, 135 | .reveal blockquote p:last-child { 136 | display: inline-block; } 137 | 138 | .reveal q { 139 | font-style: italic; } 140 | 141 | .reveal pre { 142 | display: block; 143 | position: relative; 144 | width: 90%; 145 | margin: 20px auto; 146 | text-align: left; 147 | font-size: 0.55em; 148 | font-family: monospace; 149 | line-height: 1.2em; 150 | word-wrap: break-word; 151 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } 152 | 153 | .reveal code { 154 | font-family: monospace; } 155 | 156 | .reveal pre code { 157 | display: block; 158 | padding: 5px; 159 | overflow: auto; 160 | max-height: 400px; 161 | word-wrap: normal; } 162 | 163 | .reveal table { 164 | margin: auto; 165 | border-collapse: collapse; 166 | border-spacing: 0; } 167 | 168 | .reveal table th { 169 | font-weight: bold; } 170 | 171 | .reveal table th, 172 | .reveal table td { 173 | text-align: left; 174 | padding: 0.2em 0.5em 0.2em 0.5em; 175 | border-bottom: 1px solid; } 176 | 177 | .reveal table th[align="center"], 178 | .reveal table td[align="center"] { 179 | text-align: center; } 180 | 181 | .reveal table th[align="right"], 182 | .reveal table td[align="right"] { 183 | text-align: right; } 184 | 185 | .reveal table tr:last-child td { 186 | border-bottom: none; } 187 | 188 | .reveal sup { 189 | vertical-align: super; } 190 | 191 | .reveal sub { 192 | vertical-align: sub; } 193 | 194 | .reveal small { 195 | display: inline-block; 196 | font-size: 0.6em; 197 | line-height: 1.2em; 198 | vertical-align: top; } 199 | 200 | .reveal small * { 201 | vertical-align: top; } 202 | 203 | /********************************************* 204 | * LINKS 205 | *********************************************/ 206 | .reveal a { 207 | color: #00008B; 208 | text-decoration: none; 209 | -webkit-transition: color 0.15s ease; 210 | -moz-transition: color 0.15s ease; 211 | transition: color 0.15s ease; } 212 | 213 | .reveal a:hover { 214 | color: #0000f1; 215 | text-shadow: none; 216 | border: none; } 217 | 218 | .reveal .roll span:after { 219 | color: #fff; 220 | background: #00003f; } 221 | 222 | /********************************************* 223 | * IMAGES 224 | *********************************************/ 225 | .reveal section img { 226 | margin: 15px 0px; 227 | background: rgba(255, 255, 255, 0.12); 228 | border: 4px solid #000; 229 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } 230 | 231 | .reveal section img.plain { 232 | border: 0; 233 | box-shadow: none; } 234 | 235 | .reveal a img { 236 | -webkit-transition: all 0.15s linear; 237 | -moz-transition: all 0.15s linear; 238 | transition: all 0.15s linear; } 239 | 240 | .reveal a:hover img { 241 | background: rgba(255, 255, 255, 0.2); 242 | border-color: #00008B; 243 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 244 | 245 | /********************************************* 246 | * NAVIGATION CONTROLS 247 | *********************************************/ 248 | .reveal .controls .navigate-left, 249 | .reveal .controls .navigate-left.enabled { 250 | border-right-color: #00008B; } 251 | 252 | .reveal .controls .navigate-right, 253 | .reveal .controls .navigate-right.enabled { 254 | border-left-color: #00008B; } 255 | 256 | .reveal .controls .navigate-up, 257 | .reveal .controls .navigate-up.enabled { 258 | border-bottom-color: #00008B; } 259 | 260 | .reveal .controls .navigate-down, 261 | .reveal .controls .navigate-down.enabled { 262 | border-top-color: #00008B; } 263 | 264 | .reveal .controls .navigate-left.enabled:hover { 265 | border-right-color: #0000f1; } 266 | 267 | .reveal .controls .navigate-right.enabled:hover { 268 | border-left-color: #0000f1; } 269 | 270 | .reveal .controls .navigate-up.enabled:hover { 271 | border-bottom-color: #0000f1; } 272 | 273 | .reveal .controls .navigate-down.enabled:hover { 274 | border-top-color: #0000f1; } 275 | 276 | /********************************************* 277 | * PROGRESS BAR 278 | *********************************************/ 279 | .reveal .progress { 280 | background: rgba(0, 0, 0, 0.2); } 281 | 282 | .reveal .progress span { 283 | background: #00008B; 284 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 285 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 286 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 287 | -------------------------------------------------------------------------------- /reveal.js/css/theme/solarized.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Solarized Light theme for reveal.js. 3 | * Author: Achim Staebler 4 | */ 5 | @import url(../../lib/font/league-gothic/league-gothic.css); 6 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 7 | /** 8 | * Solarized colors by Ethan Schoonover 9 | */ 10 | html * { 11 | color-profile: sRGB; 12 | rendering-intent: auto; } 13 | 14 | /********************************************* 15 | * GLOBAL STYLES 16 | *********************************************/ 17 | body { 18 | background: #fdf6e3; 19 | background-color: #fdf6e3; } 20 | 21 | .reveal { 22 | font-family: "Lato", sans-serif; 23 | font-size: 36px; 24 | font-weight: normal; 25 | color: #657b83; } 26 | 27 | ::selection { 28 | color: #fff; 29 | background: #d33682; 30 | text-shadow: none; } 31 | 32 | .reveal .slides > section, 33 | .reveal .slides > section > section { 34 | line-height: 1.3; 35 | font-weight: inherit; } 36 | 37 | /********************************************* 38 | * HEADERS 39 | *********************************************/ 40 | .reveal h1, 41 | .reveal h2, 42 | .reveal h3, 43 | .reveal h4, 44 | .reveal h5, 45 | .reveal h6 { 46 | margin: 0 0 20px 0; 47 | color: #586e75; 48 | font-family: "League Gothic", Impact, sans-serif; 49 | font-weight: normal; 50 | line-height: 1.2; 51 | letter-spacing: normal; 52 | text-transform: uppercase; 53 | text-shadow: none; 54 | word-wrap: break-word; } 55 | 56 | .reveal h1 { 57 | font-size: 3.77em; } 58 | 59 | .reveal h2 { 60 | font-size: 2.11em; } 61 | 62 | .reveal h3 { 63 | font-size: 1.55em; } 64 | 65 | .reveal h4 { 66 | font-size: 1em; } 67 | 68 | .reveal h1 { 69 | text-shadow: none; } 70 | 71 | /********************************************* 72 | * OTHER 73 | *********************************************/ 74 | .reveal p { 75 | margin: 20px 0; 76 | line-height: 1.3; } 77 | 78 | /* Ensure certain elements are never larger than the slide itself */ 79 | .reveal img, 80 | .reveal video, 81 | .reveal iframe { 82 | max-width: 95%; 83 | max-height: 95%; } 84 | 85 | .reveal strong, 86 | .reveal b { 87 | font-weight: bold; } 88 | 89 | .reveal em { 90 | font-style: italic; } 91 | 92 | .reveal ol, 93 | .reveal dl, 94 | .reveal ul { 95 | display: inline-block; 96 | text-align: left; 97 | margin: 0 0 0 1em; } 98 | 99 | .reveal ol { 100 | list-style-type: decimal; } 101 | 102 | .reveal ul { 103 | list-style-type: disc; } 104 | 105 | .reveal ul ul { 106 | list-style-type: square; } 107 | 108 | .reveal ul ul ul { 109 | list-style-type: circle; } 110 | 111 | .reveal ul ul, 112 | .reveal ul ol, 113 | .reveal ol ol, 114 | .reveal ol ul { 115 | display: block; 116 | margin-left: 40px; } 117 | 118 | .reveal dt { 119 | font-weight: bold; } 120 | 121 | .reveal dd { 122 | margin-left: 40px; } 123 | 124 | .reveal q, 125 | .reveal blockquote { 126 | quotes: none; } 127 | 128 | .reveal blockquote { 129 | display: block; 130 | position: relative; 131 | width: 70%; 132 | margin: 20px auto; 133 | padding: 5px; 134 | font-style: italic; 135 | background: rgba(255, 255, 255, 0.05); 136 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } 137 | 138 | .reveal blockquote p:first-child, 139 | .reveal blockquote p:last-child { 140 | display: inline-block; } 141 | 142 | .reveal q { 143 | font-style: italic; } 144 | 145 | .reveal pre { 146 | display: block; 147 | position: relative; 148 | width: 90%; 149 | margin: 20px auto; 150 | text-align: left; 151 | font-size: 0.55em; 152 | font-family: monospace; 153 | line-height: 1.2em; 154 | word-wrap: break-word; 155 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } 156 | 157 | .reveal code { 158 | font-family: monospace; } 159 | 160 | .reveal pre code { 161 | display: block; 162 | padding: 5px; 163 | overflow: auto; 164 | max-height: 400px; 165 | word-wrap: normal; } 166 | 167 | .reveal table { 168 | margin: auto; 169 | border-collapse: collapse; 170 | border-spacing: 0; } 171 | 172 | .reveal table th { 173 | font-weight: bold; } 174 | 175 | .reveal table th, 176 | .reveal table td { 177 | text-align: left; 178 | padding: 0.2em 0.5em 0.2em 0.5em; 179 | border-bottom: 1px solid; } 180 | 181 | .reveal table th[align="center"], 182 | .reveal table td[align="center"] { 183 | text-align: center; } 184 | 185 | .reveal table th[align="right"], 186 | .reveal table td[align="right"] { 187 | text-align: right; } 188 | 189 | .reveal table tr:last-child td { 190 | border-bottom: none; } 191 | 192 | .reveal sup { 193 | vertical-align: super; } 194 | 195 | .reveal sub { 196 | vertical-align: sub; } 197 | 198 | .reveal small { 199 | display: inline-block; 200 | font-size: 0.6em; 201 | line-height: 1.2em; 202 | vertical-align: top; } 203 | 204 | .reveal small * { 205 | vertical-align: top; } 206 | 207 | /********************************************* 208 | * LINKS 209 | *********************************************/ 210 | .reveal a { 211 | color: #268bd2; 212 | text-decoration: none; 213 | -webkit-transition: color 0.15s ease; 214 | -moz-transition: color 0.15s ease; 215 | transition: color 0.15s ease; } 216 | 217 | .reveal a:hover { 218 | color: #78b9e6; 219 | text-shadow: none; 220 | border: none; } 221 | 222 | .reveal .roll span:after { 223 | color: #fff; 224 | background: #1a6091; } 225 | 226 | /********************************************* 227 | * IMAGES 228 | *********************************************/ 229 | .reveal section img { 230 | margin: 15px 0px; 231 | background: rgba(255, 255, 255, 0.12); 232 | border: 4px solid #657b83; 233 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } 234 | 235 | .reveal section img.plain { 236 | border: 0; 237 | box-shadow: none; } 238 | 239 | .reveal a img { 240 | -webkit-transition: all 0.15s linear; 241 | -moz-transition: all 0.15s linear; 242 | transition: all 0.15s linear; } 243 | 244 | .reveal a:hover img { 245 | background: rgba(255, 255, 255, 0.2); 246 | border-color: #268bd2; 247 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 248 | 249 | /********************************************* 250 | * NAVIGATION CONTROLS 251 | *********************************************/ 252 | .reveal .controls .navigate-left, 253 | .reveal .controls .navigate-left.enabled { 254 | border-right-color: #268bd2; } 255 | 256 | .reveal .controls .navigate-right, 257 | .reveal .controls .navigate-right.enabled { 258 | border-left-color: #268bd2; } 259 | 260 | .reveal .controls .navigate-up, 261 | .reveal .controls .navigate-up.enabled { 262 | border-bottom-color: #268bd2; } 263 | 264 | .reveal .controls .navigate-down, 265 | .reveal .controls .navigate-down.enabled { 266 | border-top-color: #268bd2; } 267 | 268 | .reveal .controls .navigate-left.enabled:hover { 269 | border-right-color: #78b9e6; } 270 | 271 | .reveal .controls .navigate-right.enabled:hover { 272 | border-left-color: #78b9e6; } 273 | 274 | .reveal .controls .navigate-up.enabled:hover { 275 | border-bottom-color: #78b9e6; } 276 | 277 | .reveal .controls .navigate-down.enabled:hover { 278 | border-top-color: #78b9e6; } 279 | 280 | /********************************************* 281 | * PROGRESS BAR 282 | *********************************************/ 283 | .reveal .progress { 284 | background: rgba(0, 0, 0, 0.2); } 285 | 286 | .reveal .progress span { 287 | background: #268bd2; 288 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 289 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 290 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 291 | -------------------------------------------------------------------------------- /reveal.js/css/theme/source/beige.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Beige theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | 15 | // Include theme-specific fonts 16 | @import url(../../lib/font/league-gothic/league-gothic.css); 17 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 18 | 19 | 20 | // Override theme settings (see ../template/settings.scss) 21 | $mainColor: #333; 22 | $headingColor: #333; 23 | $headingTextShadow: none; 24 | $backgroundColor: #f7f3de; 25 | $linkColor: #8b743d; 26 | $linkColorHover: lighten( $linkColor, 20% ); 27 | $selectionBackgroundColor: rgba(79, 64, 28, 0.99); 28 | $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); 29 | 30 | // Background generator 31 | @mixin bodyBackground() { 32 | @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) ); 33 | } 34 | 35 | 36 | 37 | // Theme template ------------------------------ 38 | @import "../template/theme"; 39 | // --------------------------------------------- -------------------------------------------------------------------------------- /reveal.js/css/theme/source/black.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. This is the opposite of the 'white' theme. 3 | * 4 | * Copyright (C) 2015 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(../../lib/font/source-sans-pro/source-sans-pro.css); 16 | 17 | 18 | // Override theme settings (see ../template/settings.scss) 19 | $backgroundColor: #222; 20 | 21 | $mainColor: #fff; 22 | $headingColor: #fff; 23 | 24 | $mainFontSize: 38px; 25 | $mainFont: 'Source Sans Pro', Helvetica, sans-serif; 26 | $headingFont: 'Source Sans Pro', Helvetica, sans-serif; 27 | $headingTextShadow: none; 28 | $headingLetterSpacing: normal; 29 | $headingTextTransform: uppercase; 30 | $headingFontWeight: 600; 31 | $linkColor: #42affa; 32 | $linkColorHover: lighten( $linkColor, 15% ); 33 | $selectionBackgroundColor: lighten( $linkColor, 25% ); 34 | 35 | $heading1Size: 2.5em; 36 | $heading2Size: 1.6em; 37 | $heading3Size: 1.3em; 38 | $heading4Size: 1.0em; 39 | 40 | section.has-light-background { 41 | &, h1, h2, h3, h4, h5, h6 { 42 | color: #222; 43 | } 44 | } 45 | 46 | 47 | // Theme template ------------------------------ 48 | @import "../template/theme"; 49 | // --------------------------------------------- -------------------------------------------------------------------------------- /reveal.js/css/theme/source/blood.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Blood theme for reveal.js 3 | * Author: Walther http://github.com/Walther 4 | * 5 | * Designed to be used with highlight.js theme 6 | * "monokai_sublime.css" available from 7 | * https://github.com/isagalaev/highlight.js/ 8 | * 9 | * For other themes, change $codeBackground accordingly. 10 | * 11 | */ 12 | 13 | // Default mixins and settings ----------------- 14 | @import "../template/mixins"; 15 | @import "../template/settings"; 16 | // --------------------------------------------- 17 | 18 | // Include theme-specific fonts 19 | 20 | @import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic); 21 | 22 | // Colors used in the theme 23 | $blood: #a23; 24 | $coal: #222; 25 | $codeBackground: #23241f; 26 | 27 | $backgroundColor: $coal; 28 | 29 | // Main text 30 | $mainFont: Ubuntu, 'sans-serif'; 31 | $mainFontSize: 36px; 32 | $mainColor: #eee; 33 | 34 | // Headings 35 | $headingFont: Ubuntu, 'sans-serif'; 36 | $headingTextShadow: 2px 2px 2px $coal; 37 | 38 | // h1 shadow, borrowed humbly from 39 | // (c) Default theme by Hakim El Hattab 40 | $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); 41 | 42 | // Links 43 | $linkColor: $blood; 44 | $linkColorHover: lighten( $linkColor, 20% ); 45 | 46 | // Text selection 47 | $selectionBackgroundColor: $blood; 48 | $selectionColor: #fff; 49 | 50 | 51 | // Theme template ------------------------------ 52 | @import "../template/theme"; 53 | // --------------------------------------------- 54 | 55 | // some overrides after theme template import 56 | 57 | .reveal p { 58 | font-weight: 300; 59 | text-shadow: 1px 1px $coal; 60 | } 61 | 62 | .reveal h1, 63 | .reveal h2, 64 | .reveal h3, 65 | .reveal h4, 66 | .reveal h5, 67 | .reveal h6 { 68 | font-weight: 700; 69 | } 70 | 71 | .reveal p code { 72 | background-color: $codeBackground; 73 | display: inline-block; 74 | border-radius: 7px; 75 | } 76 | 77 | .reveal small code { 78 | vertical-align: baseline; 79 | } -------------------------------------------------------------------------------- /reveal.js/css/theme/source/league.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * League theme for reveal.js. 3 | * 4 | * This was the default theme pre-3.0.0. 5 | * 6 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 7 | */ 8 | 9 | 10 | // Default mixins and settings ----------------- 11 | @import "../template/mixins"; 12 | @import "../template/settings"; 13 | // --------------------------------------------- 14 | 15 | 16 | 17 | // Include theme-specific fonts 18 | @import url(../../lib/font/league-gothic/league-gothic.css); 19 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 20 | 21 | // Override theme settings (see ../template/settings.scss) 22 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); 23 | $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); 24 | 25 | // Background generator 26 | @mixin bodyBackground() { 27 | @include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) ); 28 | } 29 | 30 | 31 | 32 | // Theme template ------------------------------ 33 | @import "../template/theme"; 34 | // --------------------------------------------- -------------------------------------------------------------------------------- /reveal.js/css/theme/source/moon.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Solarized Dark theme for reveal.js. 3 | * Author: Achim Staebler 4 | */ 5 | 6 | 7 | // Default mixins and settings ----------------- 8 | @import "../template/mixins"; 9 | @import "../template/settings"; 10 | // --------------------------------------------- 11 | 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(../../lib/font/league-gothic/league-gothic.css); 16 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 17 | 18 | /** 19 | * Solarized colors by Ethan Schoonover 20 | */ 21 | html * { 22 | color-profile: sRGB; 23 | rendering-intent: auto; 24 | } 25 | 26 | // Solarized colors 27 | $base03: #002b36; 28 | $base02: #073642; 29 | $base01: #586e75; 30 | $base00: #657b83; 31 | $base0: #839496; 32 | $base1: #93a1a1; 33 | $base2: #eee8d5; 34 | $base3: #fdf6e3; 35 | $yellow: #b58900; 36 | $orange: #cb4b16; 37 | $red: #dc322f; 38 | $magenta: #d33682; 39 | $violet: #6c71c4; 40 | $blue: #268bd2; 41 | $cyan: #2aa198; 42 | $green: #859900; 43 | 44 | // Override theme settings (see ../template/settings.scss) 45 | $mainColor: $base1; 46 | $headingColor: $base2; 47 | $headingTextShadow: none; 48 | $backgroundColor: $base03; 49 | $linkColor: $blue; 50 | $linkColorHover: lighten( $linkColor, 20% ); 51 | $selectionBackgroundColor: $magenta; 52 | 53 | 54 | 55 | // Theme template ------------------------------ 56 | @import "../template/theme"; 57 | // --------------------------------------------- 58 | -------------------------------------------------------------------------------- /reveal.js/css/theme/source/night.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Black theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700); 16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); 17 | 18 | 19 | // Override theme settings (see ../template/settings.scss) 20 | $backgroundColor: #111; 21 | 22 | $mainFont: 'Open Sans', sans-serif; 23 | $linkColor: #e7ad52; 24 | $linkColorHover: lighten( $linkColor, 20% ); 25 | $headingFont: 'Montserrat', Impact, sans-serif; 26 | $headingTextShadow: none; 27 | $headingLetterSpacing: -0.03em; 28 | $headingTextTransform: none; 29 | $selectionBackgroundColor: #e7ad52; 30 | $mainFontSize: 30px; 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- -------------------------------------------------------------------------------- /reveal.js/css/theme/source/serif.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * A simple theme for reveal.js presentations, similar 3 | * to the default theme. The accent color is brown. 4 | * 5 | * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. 6 | */ 7 | 8 | 9 | // Default mixins and settings ----------------- 10 | @import "../template/mixins"; 11 | @import "../template/settings"; 12 | // --------------------------------------------- 13 | 14 | 15 | 16 | // Override theme settings (see ../template/settings.scss) 17 | $mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; 18 | $mainColor: #000; 19 | $headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; 20 | $headingColor: #383D3D; 21 | $headingTextShadow: none; 22 | $headingTextTransform: none; 23 | $backgroundColor: #F0F1EB; 24 | $linkColor: #51483D; 25 | $linkColorHover: lighten( $linkColor, 20% ); 26 | $selectionBackgroundColor: #26351C; 27 | 28 | .reveal a { 29 | line-height: 1.3em; 30 | } 31 | 32 | 33 | // Theme template ------------------------------ 34 | @import "../template/theme"; 35 | // --------------------------------------------- 36 | -------------------------------------------------------------------------------- /reveal.js/css/theme/source/simple.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * A simple theme for reveal.js presentations, similar 3 | * to the default theme. The accent color is darkblue. 4 | * 5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. 6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 7 | */ 8 | 9 | 10 | // Default mixins and settings ----------------- 11 | @import "../template/mixins"; 12 | @import "../template/settings"; 13 | // --------------------------------------------- 14 | 15 | 16 | 17 | // Include theme-specific fonts 18 | @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); 19 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 20 | 21 | 22 | // Override theme settings (see ../template/settings.scss) 23 | $mainFont: 'Lato', sans-serif; 24 | $mainColor: #000; 25 | $headingFont: 'News Cycle', Impact, sans-serif; 26 | $headingColor: #000; 27 | $headingTextShadow: none; 28 | $headingTextTransform: none; 29 | $backgroundColor: #fff; 30 | $linkColor: #00008B; 31 | $linkColorHover: lighten( $linkColor, 20% ); 32 | $selectionBackgroundColor: rgba(0, 0, 0, 0.99); 33 | 34 | 35 | 36 | // Theme template ------------------------------ 37 | @import "../template/theme"; 38 | // --------------------------------------------- -------------------------------------------------------------------------------- /reveal.js/css/theme/source/sky.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Sky theme for reveal.js. 3 | * 4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | 15 | // Include theme-specific fonts 16 | @import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); 17 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); 18 | 19 | 20 | // Override theme settings (see ../template/settings.scss) 21 | $mainFont: 'Open Sans', sans-serif; 22 | $mainColor: #333; 23 | $headingFont: 'Quicksand', sans-serif; 24 | $headingColor: #333; 25 | $headingLetterSpacing: -0.08em; 26 | $headingTextShadow: none; 27 | $backgroundColor: #f7fbfc; 28 | $linkColor: #3b759e; 29 | $linkColorHover: lighten( $linkColor, 20% ); 30 | $selectionBackgroundColor: #134674; 31 | 32 | // Fix links so they are not cut off 33 | .reveal a { 34 | line-height: 1.3em; 35 | } 36 | 37 | // Background generator 38 | @mixin bodyBackground() { 39 | @include radial-gradient( #add9e4, #f7fbfc ); 40 | } 41 | 42 | 43 | 44 | // Theme template ------------------------------ 45 | @import "../template/theme"; 46 | // --------------------------------------------- 47 | -------------------------------------------------------------------------------- /reveal.js/css/theme/source/solarized.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Solarized Light theme for reveal.js. 3 | * Author: Achim Staebler 4 | */ 5 | 6 | 7 | // Default mixins and settings ----------------- 8 | @import "../template/mixins"; 9 | @import "../template/settings"; 10 | // --------------------------------------------- 11 | 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(../../lib/font/league-gothic/league-gothic.css); 16 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); 17 | 18 | 19 | /** 20 | * Solarized colors by Ethan Schoonover 21 | */ 22 | html * { 23 | color-profile: sRGB; 24 | rendering-intent: auto; 25 | } 26 | 27 | // Solarized colors 28 | $base03: #002b36; 29 | $base02: #073642; 30 | $base01: #586e75; 31 | $base00: #657b83; 32 | $base0: #839496; 33 | $base1: #93a1a1; 34 | $base2: #eee8d5; 35 | $base3: #fdf6e3; 36 | $yellow: #b58900; 37 | $orange: #cb4b16; 38 | $red: #dc322f; 39 | $magenta: #d33682; 40 | $violet: #6c71c4; 41 | $blue: #268bd2; 42 | $cyan: #2aa198; 43 | $green: #859900; 44 | 45 | // Override theme settings (see ../template/settings.scss) 46 | $mainColor: $base00; 47 | $headingColor: $base01; 48 | $headingTextShadow: none; 49 | $backgroundColor: $base3; 50 | $linkColor: $blue; 51 | $linkColorHover: lighten( $linkColor, 20% ); 52 | $selectionBackgroundColor: $magenta; 53 | 54 | // Background generator 55 | // @mixin bodyBackground() { 56 | // @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) ); 57 | // } 58 | 59 | 60 | 61 | // Theme template ------------------------------ 62 | @import "../template/theme"; 63 | // --------------------------------------------- 64 | -------------------------------------------------------------------------------- /reveal.js/css/theme/source/white.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * White theme for reveal.js. This is the opposite of the 'black' theme. 3 | * 4 | * Copyright (C) 2015 Hakim El Hattab, http://hakim.se 5 | */ 6 | 7 | 8 | // Default mixins and settings ----------------- 9 | @import "../template/mixins"; 10 | @import "../template/settings"; 11 | // --------------------------------------------- 12 | 13 | 14 | // Include theme-specific fonts 15 | @import url(../../lib/font/source-sans-pro/source-sans-pro.css); 16 | 17 | 18 | // Override theme settings (see ../template/settings.scss) 19 | $backgroundColor: #fff; 20 | 21 | $mainColor: #222; 22 | $headingColor: #222; 23 | 24 | $mainFontSize: 38px; 25 | $mainFont: 'Source Sans Pro', Helvetica, sans-serif; 26 | $headingFont: 'Source Sans Pro', Helvetica, sans-serif; 27 | $headingTextShadow: none; 28 | $headingLetterSpacing: normal; 29 | $headingTextTransform: uppercase; 30 | $headingFontWeight: 600; 31 | $linkColor: #2a76dd; 32 | $linkColorHover: lighten( $linkColor, 15% ); 33 | $selectionBackgroundColor: lighten( $linkColor, 25% ); 34 | 35 | $heading1Size: 2.5em; 36 | $heading2Size: 1.6em; 37 | $heading3Size: 1.3em; 38 | $heading4Size: 1.0em; 39 | 40 | section.has-dark-background { 41 | &, h1, h2, h3, h4, h5, h6 { 42 | color: #fff; 43 | } 44 | } 45 | 46 | 47 | // Theme template ------------------------------ 48 | @import "../template/theme"; 49 | // --------------------------------------------- -------------------------------------------------------------------------------- /reveal.js/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin vertical-gradient( $top, $bottom ) { 2 | background: $top; 3 | background: -moz-linear-gradient( top, $top 0%, $bottom 100% ); 4 | background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) ); 5 | background: -webkit-linear-gradient( top, $top 0%, $bottom 100% ); 6 | background: -o-linear-gradient( top, $top 0%, $bottom 100% ); 7 | background: -ms-linear-gradient( top, $top 0%, $bottom 100% ); 8 | background: linear-gradient( top, $top 0%, $bottom 100% ); 9 | } 10 | 11 | @mixin horizontal-gradient( $top, $bottom ) { 12 | background: $top; 13 | background: -moz-linear-gradient( left, $top 0%, $bottom 100% ); 14 | background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) ); 15 | background: -webkit-linear-gradient( left, $top 0%, $bottom 100% ); 16 | background: -o-linear-gradient( left, $top 0%, $bottom 100% ); 17 | background: -ms-linear-gradient( left, $top 0%, $bottom 100% ); 18 | background: linear-gradient( left, $top 0%, $bottom 100% ); 19 | } 20 | 21 | @mixin radial-gradient( $outer, $inner, $type: circle ) { 22 | background: $outer; 23 | background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 24 | background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) ); 25 | background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 26 | background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 27 | background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 28 | background: radial-gradient( center, $type cover, $inner 0%, $outer 100% ); 29 | } -------------------------------------------------------------------------------- /reveal.js/css/theme/template/settings.scss: -------------------------------------------------------------------------------- 1 | // Base settings for all themes that can optionally be 2 | // overridden by the super-theme 3 | 4 | // Background of the presentation 5 | $backgroundColor: #2b2b2b; 6 | 7 | // Primary/body text 8 | $mainFont: 'Lato', sans-serif; 9 | $mainFontSize: 36px; 10 | $mainColor: #eee; 11 | 12 | // Vertical spacing between blocks of text 13 | $blockMargin: 20px; 14 | 15 | // Headings 16 | $headingMargin: 0 0 $blockMargin 0; 17 | $headingFont: 'League Gothic', Impact, sans-serif; 18 | $headingColor: #eee; 19 | $headingLineHeight: 1.2; 20 | $headingLetterSpacing: normal; 21 | $headingTextTransform: uppercase; 22 | $headingTextShadow: none; 23 | $headingFontWeight: normal; 24 | $heading1TextShadow: $headingTextShadow; 25 | 26 | $heading1Size: 3.77em; 27 | $heading2Size: 2.11em; 28 | $heading3Size: 1.55em; 29 | $heading4Size: 1.00em; 30 | 31 | // Links and actions 32 | $linkColor: #13DAEC; 33 | $linkColorHover: lighten( $linkColor, 20% ); 34 | 35 | // Text selection 36 | $selectionBackgroundColor: #FF5E99; 37 | $selectionColor: #fff; 38 | 39 | // Generates the presentation background, can be overridden 40 | // to return a background image or gradient 41 | @mixin bodyBackground() { 42 | background: $backgroundColor; 43 | } -------------------------------------------------------------------------------- /reveal.js/css/theme/white.css: -------------------------------------------------------------------------------- 1 | /** 2 | * White theme for reveal.js. This is the opposite of the 'black' theme. 3 | * 4 | * Copyright (C) 2015 Hakim El Hattab, http://hakim.se 5 | */ 6 | @import url(../../lib/font/source-sans-pro/source-sans-pro.css); 7 | section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 { 8 | color: #fff; } 9 | 10 | /********************************************* 11 | * GLOBAL STYLES 12 | *********************************************/ 13 | body { 14 | background: #fff; 15 | background-color: #fff; } 16 | 17 | .reveal { 18 | font-family: "Source Sans Pro", Helvetica, sans-serif; 19 | font-size: 38px; 20 | font-weight: normal; 21 | color: #222; } 22 | 23 | ::selection { 24 | color: #fff; 25 | background: #98bdef; 26 | text-shadow: none; } 27 | 28 | .reveal .slides > section, 29 | .reveal .slides > section > section { 30 | line-height: 1.3; 31 | font-weight: inherit; } 32 | 33 | /********************************************* 34 | * HEADERS 35 | *********************************************/ 36 | .reveal h1, 37 | .reveal h2, 38 | .reveal h3, 39 | .reveal h4, 40 | .reveal h5, 41 | .reveal h6 { 42 | margin: 0 0 20px 0; 43 | color: #222; 44 | font-family: "Source Sans Pro", Helvetica, sans-serif; 45 | font-weight: 600; 46 | line-height: 1.2; 47 | letter-spacing: normal; 48 | text-transform: uppercase; 49 | text-shadow: none; 50 | word-wrap: break-word; } 51 | 52 | .reveal h1 { 53 | font-size: 2.5em; } 54 | 55 | .reveal h2 { 56 | font-size: 1.6em; } 57 | 58 | .reveal h3 { 59 | font-size: 1.3em; } 60 | 61 | .reveal h4 { 62 | font-size: 1em; } 63 | 64 | .reveal h1 { 65 | text-shadow: none; } 66 | 67 | /********************************************* 68 | * OTHER 69 | *********************************************/ 70 | .reveal p { 71 | margin: 20px 0; 72 | line-height: 1.3; } 73 | 74 | /* Ensure certain elements are never larger than the slide itself */ 75 | .reveal img, 76 | .reveal video, 77 | .reveal iframe { 78 | max-width: 95%; 79 | max-height: 95%; } 80 | 81 | .reveal strong, 82 | .reveal b { 83 | font-weight: bold; } 84 | 85 | .reveal em { 86 | font-style: italic; } 87 | 88 | .reveal ol, 89 | .reveal dl, 90 | .reveal ul { 91 | display: inline-block; 92 | text-align: left; 93 | margin: 0 0 0 1em; } 94 | 95 | .reveal ol { 96 | list-style-type: decimal; } 97 | 98 | .reveal ul { 99 | list-style-type: disc; } 100 | 101 | .reveal ul ul { 102 | list-style-type: square; } 103 | 104 | .reveal ul ul ul { 105 | list-style-type: circle; } 106 | 107 | .reveal ul ul, 108 | .reveal ul ol, 109 | .reveal ol ol, 110 | .reveal ol ul { 111 | display: block; 112 | margin-left: 40px; } 113 | 114 | .reveal dt { 115 | font-weight: bold; } 116 | 117 | .reveal dd { 118 | margin-left: 40px; } 119 | 120 | .reveal q, 121 | .reveal blockquote { 122 | quotes: none; } 123 | 124 | .reveal blockquote { 125 | display: block; 126 | position: relative; 127 | width: 70%; 128 | margin: 20px auto; 129 | padding: 5px; 130 | font-style: italic; 131 | background: rgba(255, 255, 255, 0.05); 132 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); } 133 | 134 | .reveal blockquote p:first-child, 135 | .reveal blockquote p:last-child { 136 | display: inline-block; } 137 | 138 | .reveal q { 139 | font-style: italic; } 140 | 141 | .reveal pre { 142 | display: block; 143 | position: relative; 144 | width: 90%; 145 | margin: 20px auto; 146 | text-align: left; 147 | font-size: 0.55em; 148 | font-family: monospace; 149 | line-height: 1.2em; 150 | word-wrap: break-word; 151 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); } 152 | 153 | .reveal code { 154 | font-family: monospace; } 155 | 156 | .reveal pre code { 157 | display: block; 158 | padding: 5px; 159 | overflow: auto; 160 | max-height: 400px; 161 | word-wrap: normal; } 162 | 163 | .reveal table { 164 | margin: auto; 165 | border-collapse: collapse; 166 | border-spacing: 0; } 167 | 168 | .reveal table th { 169 | font-weight: bold; } 170 | 171 | .reveal table th, 172 | .reveal table td { 173 | text-align: left; 174 | padding: 0.2em 0.5em 0.2em 0.5em; 175 | border-bottom: 1px solid; } 176 | 177 | .reveal table th[align="center"], 178 | .reveal table td[align="center"] { 179 | text-align: center; } 180 | 181 | .reveal table th[align="right"], 182 | .reveal table td[align="right"] { 183 | text-align: right; } 184 | 185 | .reveal table tr:last-child td { 186 | border-bottom: none; } 187 | 188 | .reveal sup { 189 | vertical-align: super; } 190 | 191 | .reveal sub { 192 | vertical-align: sub; } 193 | 194 | .reveal small { 195 | display: inline-block; 196 | font-size: 0.6em; 197 | line-height: 1.2em; 198 | vertical-align: top; } 199 | 200 | .reveal small * { 201 | vertical-align: top; } 202 | 203 | /********************************************* 204 | * LINKS 205 | *********************************************/ 206 | .reveal a { 207 | color: #2a76dd; 208 | text-decoration: none; 209 | -webkit-transition: color 0.15s ease; 210 | -moz-transition: color 0.15s ease; 211 | transition: color 0.15s ease; } 212 | 213 | .reveal a:hover { 214 | color: #6ca0e8; 215 | text-shadow: none; 216 | border: none; } 217 | 218 | .reveal .roll span:after { 219 | color: #fff; 220 | background: #1a53a1; } 221 | 222 | /********************************************* 223 | * IMAGES 224 | *********************************************/ 225 | .reveal section img { 226 | margin: 15px 0px; 227 | background: rgba(255, 255, 255, 0.12); 228 | border: 4px solid #222; 229 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); } 230 | 231 | .reveal section img.plain { 232 | border: 0; 233 | box-shadow: none; } 234 | 235 | .reveal a img { 236 | -webkit-transition: all 0.15s linear; 237 | -moz-transition: all 0.15s linear; 238 | transition: all 0.15s linear; } 239 | 240 | .reveal a:hover img { 241 | background: rgba(255, 255, 255, 0.2); 242 | border-color: #2a76dd; 243 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } 244 | 245 | /********************************************* 246 | * NAVIGATION CONTROLS 247 | *********************************************/ 248 | .reveal .controls .navigate-left, 249 | .reveal .controls .navigate-left.enabled { 250 | border-right-color: #2a76dd; } 251 | 252 | .reveal .controls .navigate-right, 253 | .reveal .controls .navigate-right.enabled { 254 | border-left-color: #2a76dd; } 255 | 256 | .reveal .controls .navigate-up, 257 | .reveal .controls .navigate-up.enabled { 258 | border-bottom-color: #2a76dd; } 259 | 260 | .reveal .controls .navigate-down, 261 | .reveal .controls .navigate-down.enabled { 262 | border-top-color: #2a76dd; } 263 | 264 | .reveal .controls .navigate-left.enabled:hover { 265 | border-right-color: #6ca0e8; } 266 | 267 | .reveal .controls .navigate-right.enabled:hover { 268 | border-left-color: #6ca0e8; } 269 | 270 | .reveal .controls .navigate-up.enabled:hover { 271 | border-bottom-color: #6ca0e8; } 272 | 273 | .reveal .controls .navigate-down.enabled:hover { 274 | border-top-color: #6ca0e8; } 275 | 276 | /********************************************* 277 | * PROGRESS BAR 278 | *********************************************/ 279 | .reveal .progress { 280 | background: rgba(0, 0, 0, 0.2); } 281 | 282 | .reveal .progress span { 283 | background: #2a76dd; 284 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 285 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); 286 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } 287 | -------------------------------------------------------------------------------- /reveal.js/lib/css/zenburn.css: -------------------------------------------------------------------------------- 1 | /* 2 | Zenburn style from voldmar.ru (c) Vladimir Epifanov 3 | based on dark.css by Ivan Sagalaev 4 | */ 5 | 6 | .hljs { 7 | display: block; 8 | overflow-x: auto; 9 | padding: 0.5em; 10 | background: #3f3f3f; 11 | color: #dcdcdc; 12 | -webkit-text-size-adjust: none; 13 | } 14 | 15 | .hljs-keyword, 16 | .hljs-tag, 17 | .css .hljs-class, 18 | .css .hljs-id, 19 | .lisp .hljs-title, 20 | .nginx .hljs-title, 21 | .hljs-request, 22 | .hljs-status, 23 | .clojure .hljs-attribute { 24 | color: #e3ceab; 25 | } 26 | 27 | .django .hljs-template_tag, 28 | .django .hljs-variable, 29 | .django .hljs-filter .hljs-argument { 30 | color: #dcdcdc; 31 | } 32 | 33 | .hljs-number, 34 | .hljs-date { 35 | color: #8cd0d3; 36 | } 37 | 38 | .dos .hljs-envvar, 39 | .dos .hljs-stream, 40 | .hljs-variable, 41 | .apache .hljs-sqbracket, 42 | .hljs-name { 43 | color: #efdcbc; 44 | } 45 | 46 | .dos .hljs-flow, 47 | .diff .hljs-change, 48 | .python .exception, 49 | .python .hljs-built_in, 50 | .hljs-literal, 51 | .tex .hljs-special { 52 | color: #efefaf; 53 | } 54 | 55 | .diff .hljs-chunk, 56 | .hljs-subst { 57 | color: #8f8f8f; 58 | } 59 | 60 | .dos .hljs-keyword, 61 | .hljs-decorator, 62 | .hljs-title, 63 | .hljs-type, 64 | .diff .hljs-header, 65 | .ruby .hljs-class .hljs-parent, 66 | .apache .hljs-tag, 67 | .nginx .hljs-built_in, 68 | .tex .hljs-command, 69 | .hljs-prompt { 70 | color: #efef8f; 71 | } 72 | 73 | .dos .hljs-winutils, 74 | .ruby .hljs-symbol, 75 | .ruby .hljs-symbol .hljs-string, 76 | .ruby .hljs-string { 77 | color: #dca3a3; 78 | } 79 | 80 | .diff .hljs-deletion, 81 | .hljs-string, 82 | .hljs-tag .hljs-value, 83 | .hljs-preprocessor, 84 | .hljs-pragma, 85 | .hljs-built_in, 86 | .smalltalk .hljs-class, 87 | .smalltalk .hljs-localvars, 88 | .smalltalk .hljs-array, 89 | .css .hljs-rule .hljs-value, 90 | .hljs-attr_selector, 91 | .hljs-pseudo, 92 | .apache .hljs-cbracket, 93 | .tex .hljs-formula, 94 | .coffeescript .hljs-attribute { 95 | color: #cc9393; 96 | } 97 | 98 | .hljs-shebang, 99 | .diff .hljs-addition, 100 | .hljs-comment, 101 | .hljs-annotation, 102 | .hljs-pi, 103 | .hljs-doctype { 104 | color: #7f9f7f; 105 | } 106 | 107 | .coffeescript .javascript, 108 | .javascript .xml, 109 | .tex .hljs-formula, 110 | .xml .javascript, 111 | .xml .vbscript, 112 | .xml .css, 113 | .xml .hljs-cdata { 114 | opacity: 0.5; 115 | } -------------------------------------------------------------------------------- /reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License 2 | 3 | Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. 4 | 5 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 6 | This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL 7 | 8 | —————————————————————————————- 9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | —————————————————————————————- 11 | 12 | PREAMBLE 13 | The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. 14 | 15 | The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. 16 | 17 | DEFINITIONS 18 | “Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. 19 | 20 | “Reserved Font Name” refers to any names specified as such after the copyright statement(s). 21 | 22 | “Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s). 23 | 24 | “Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. 25 | 26 | “Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. 27 | 28 | PERMISSION & CONDITIONS 29 | Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 30 | 31 | 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 32 | 33 | 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 34 | 35 | 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 36 | 37 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 38 | 39 | 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. 40 | 41 | TERMINATION 42 | This license becomes null and void if any of the above conditions are not met. 43 | 44 | DISCLAIMER 45 | THE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /reveal.js/lib/font/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Source Sans Pro'; 3 | src: url('source-sans-pro-regular.eot'); 4 | src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'), 5 | url('source-sans-pro-regular.woff') format('woff'), 6 | url('source-sans-pro-regular.ttf') format('truetype'); 7 | font-weight: normal; 8 | font-style: normal; 9 | } 10 | 11 | @font-face { 12 | font-family: 'Source Sans Pro'; 13 | src: url('source-sans-pro-italic.eot'); 14 | src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'), 15 | url('source-sans-pro-italic.woff') format('woff'), 16 | url('source-sans-pro-italic.ttf') format('truetype'); 17 | font-weight: normal; 18 | font-style: italic; 19 | } 20 | 21 | @font-face { 22 | font-family: 'Source Sans Pro'; 23 | src: url('source-sans-pro-semibold.eot'); 24 | src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'), 25 | url('source-sans-pro-semibold.woff') format('woff'), 26 | url('source-sans-pro-semibold.ttf') format('truetype'); 27 | font-weight: 600; 28 | font-style: normal; 29 | } 30 | 31 | @font-face { 32 | font-family: 'Source Sans Pro'; 33 | src: url('source-sans-pro-semibolditalic.eot'); 34 | src: url('source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'), 35 | url('source-sans-pro-semibolditalic.woff') format('woff'), 36 | url('source-sans-pro-semibolditalic.ttf') format('truetype'); 37 | font-weight: 600; 38 | font-style: italic; 39 | } -------------------------------------------------------------------------------- /reveal.js/lib/js/classList.js: -------------------------------------------------------------------------------- 1 | /*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/ 2 | if(typeof document!=="undefined"&&!("classList" in document.createElement("a"))){(function(j){var a="classList",f="prototype",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\s+|\s+$/g,"")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p 3 | Copyright Tero Piirainen (tipiirai) 4 | License MIT / http://bit.ly/mit-license 5 | Version 0.96 6 | 7 | http://headjs.com 8 | */(function(a){function z(){d||(d=!0,s(e,function(a){p(a)}))}function y(c,d){var e=a.createElement("script");e.type="text/"+(c.type||"javascript"),e.src=c.src||c,e.async=!1,e.onreadystatechange=e.onload=function(){var a=e.readyState;!d.done&&(!a||/loaded|complete/.test(a))&&(d.done=!0,d())},(a.body||b).appendChild(e)}function x(a,b){if(a.state==o)return b&&b();if(a.state==n)return k.ready(a.name,b);if(a.state==m)return a.onpreload.push(function(){x(a,b)});a.state=n,y(a.url,function(){a.state=o,b&&b(),s(g[a.name],function(a){p(a)}),u()&&d&&s(g.ALL,function(a){p(a)})})}function w(a,b){a.state===undefined&&(a.state=m,a.onpreload=[],y({src:a.url,type:"cache"},function(){v(a)}))}function v(a){a.state=l,s(a.onpreload,function(a){a.call()})}function u(a){a=a||h;var b;for(var c in a){if(a.hasOwnProperty(c)&&a[c].state!=o)return!1;b=!0}return b}function t(a){return Object.prototype.toString.call(a)=="[object Function]"}function s(a,b){if(!!a){typeof a=="object"&&(a=[].slice.call(a));for(var c=0;c li:last-child { 206 | border-radius: 0 0 5px 5px; 207 | -moz-border-radius: 0 0 5px 5px; 208 | -webkit-border-bottom-right-radius: 5px; 209 | -webkit-border-bottom-left-radius: 5px; 210 | } 211 | 212 | #qunit-tests .fail { color: #000000; background-color: #EE5757; } 213 | #qunit-tests .fail .test-name, 214 | #qunit-tests .fail .module-name { color: #000000; } 215 | 216 | #qunit-tests .fail .test-actual { color: #EE5757; } 217 | #qunit-tests .fail .test-expected { color: green; } 218 | 219 | #qunit-banner.qunit-fail { background-color: #EE5757; } 220 | 221 | 222 | /** Result */ 223 | 224 | #qunit-testresult { 225 | padding: 0.5em 0.5em 0.5em 2.5em; 226 | 227 | color: #2b81af; 228 | background-color: #D2E0E6; 229 | 230 | border-bottom: 1px solid white; 231 | } 232 | #qunit-testresult .module-name { 233 | font-weight: bold; 234 | } 235 | 236 | /** Fixture */ 237 | 238 | #qunit-fixture { 239 | position: absolute; 240 | top: -10000px; 241 | left: -10000px; 242 | width: 1000px; 243 | height: 1000px; 244 | } -------------------------------------------------------------------------------- /reveal.js/test/test-markdown-element-attributes.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 4, 'found four slides' ); 9 | }); 10 | 11 | 12 | test( 'Attributes on element header in vertical slides', function() { 13 | strictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.fade-out' ).length, 1, 'found one vertical slide with class fragment.fade-out on header' ); 14 | strictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.shrink' ).length, 1, 'found one vertical slide with class fragment.shrink on header' ); 15 | }); 16 | 17 | test( 'Attributes on element paragraphs in vertical slides', function() { 18 | strictEqual( document.querySelectorAll( '.reveal .slides section>section p.fragment.grow' ).length, 2, 'found a vertical slide with two paragraphs with class fragment.grow' ); 19 | }); 20 | 21 | test( 'Attributes on element list items in vertical slides', function() { 22 | strictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' ); 23 | }); 24 | 25 | test( 'Attributes on element paragraphs in horizontal slides', function() { 26 | strictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-red' ).length, 4, 'found a horizontal slide with four paragraphs with class fragment.grow' ); 27 | }); 28 | test( 'Attributes on element list items in horizontal slides', function() { 29 | strictEqual( document.querySelectorAll( '.reveal .slides section li.fragment.highlight-green' ).length, 5, 'found a horizontal slide with five list items with class fragment.roll-in' ); 30 | }); 31 | test( 'Attributes on element list items in horizontal slides', function() { 32 | strictEqual( document.querySelectorAll( '.reveal .slides section img.reveal.stretch' ).length, 1, 'found a horizontal slide with stretched image, class img.reveal.stretch' ); 33 | }); 34 | 35 | test( 'Attributes on elements in vertical slides with default element attribute separator', function() { 36 | strictEqual( document.querySelectorAll( '.reveal .slides section h2.fragment.highlight-red' ).length, 2, 'found two h2 titles with fragment highlight-red in vertical slides with default element attribute separator' ); 37 | }); 38 | 39 | test( 'Attributes on elements in single slides with default element attribute separator', function() { 40 | strictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-blue' ).length, 3, 'found three elements with fragment highlight-blue in single slide with default element attribute separator' ); 41 | }); 42 | 43 | } ); 44 | 45 | Reveal.initialize(); 46 | 47 | -------------------------------------------------------------------------------- /reveal.js/test/test-markdown-slide-attributes.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 6, 'found six vertical slides' ); 9 | }); 10 | 11 | test( 'Id on slide', function() { 12 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section#slide2' ).length, 1, 'found one slide with id slide2' ); 13 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section a[href="#/slide2"]' ).length, 1, 'found one slide with a link to slide2' ); 14 | }); 15 | 16 | test( 'data-background attributes', function() { 17 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background="#A0C66B"]' ).length, 1, 'found one vertical slide with data-background="#A0C66B"' ); 18 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background="#ff0000"]' ).length, 1, 'found one vertical slide with data-background="#ff0000"' ); 19 | strictEqual( document.querySelectorAll( '.reveal .slides>section[data-background="#C6916B"]' ).length, 1, 'found one slide with data-background="#C6916B"' ); 20 | }); 21 | 22 | test( 'data-transition attributes', function() { 23 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition="zoom"]' ).length, 1, 'found one vertical slide with data-transition="zoom"' ); 24 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition="fade"]' ).length, 1, 'found one vertical slide with data-transition="fade"' ); 25 | strictEqual( document.querySelectorAll( '.reveal .slides section [data-transition="zoom"]' ).length, 1, 'found one slide with data-transition="zoom"' ); 26 | }); 27 | 28 | test( 'data-background attributes with default separator', function() { 29 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background="#A7C66B"]' ).length, 1, 'found one vertical slide with data-background="#A0C66B"' ); 30 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background="#f70000"]' ).length, 1, 'found one vertical slide with data-background="#ff0000"' ); 31 | strictEqual( document.querySelectorAll( '.reveal .slides>section[data-background="#C7916B"]' ).length, 1, 'found one slide with data-background="#C6916B"' ); 32 | }); 33 | 34 | test( 'data-transition attributes with default separator', function() { 35 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition="concave"]' ).length, 1, 'found one vertical slide with data-transition="zoom"' ); 36 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition="page"]' ).length, 1, 'found one vertical slide with data-transition="fade"' ); 37 | strictEqual( document.querySelectorAll( '.reveal .slides section [data-transition="concave"]' ).length, 1, 'found one slide with data-transition="zoom"' ); 38 | }); 39 | 40 | test( 'data-transition attributes with inline content', function() { 41 | strictEqual( document.querySelectorAll( '.reveal .slides>section[data-background="#ff0000"]' ).length, 3, 'found three horizontal slides with data-background="#ff0000"' ); 42 | }); 43 | 44 | } ); 45 | 46 | Reveal.initialize(); 47 | 48 | -------------------------------------------------------------------------------- /reveal.js/test/test-markdown.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reveal.addEventListener( 'ready', function() { 4 | 5 | QUnit.module( 'Markdown' ); 6 | 7 | test( 'Vertical separator', function() { 8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize(); 15 | 16 | -------------------------------------------------------------------------------- /reveal.js/test/test-pdf.js: -------------------------------------------------------------------------------- 1 | 2 | Reveal.addEventListener( 'ready', function() { 3 | 4 | // Only one test for now, we're mainly ensuring that there 5 | // are no execution errors when running PDF mode 6 | 7 | test( 'Reveal.isReady', function() { 8 | strictEqual( Reveal.isReady(), true, 'returns true' ); 9 | }); 10 | 11 | 12 | } ); 13 | 14 | Reveal.initialize({ pdf: true }); 15 | 16 | -------------------------------------------------------------------------------- /tools/filters/columnfilter.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | from pandocfilters import toJSONFilter, RawBlock, Div, stringify 4 | import re 5 | 6 | def html(x): 7 | return RawBlock('html', x) 8 | 9 | def latex(s): 10 | return RawBlock('latex', s) 11 | 12 | def mk_columns(k, v, f, m): 13 | if k == "Para": 14 | value = stringify(v) 15 | if value.startswith('[') and value.endswith(']'): 16 | if value.count("[columns"): 17 | div_args = "" 18 | if value.count(","): 19 | div_args += value[value.find(",")+1:-1] 20 | return html(r'
' % div_args) 21 | elif value == "[/columns]": 22 | return html(r'
') 23 | elif value == "[/column]": 24 | return html(r'') 25 | elif value.startswith("[column=") or value.startswith("[column,"): 26 | digit_re = re.compile("column=(\d+)") 27 | regex_result = digit_re.search(value) 28 | 29 | if regex_result and regex_result.groups(): 30 | div_args = r'
Pandoc 11 | appendLinkTable (Pandoc m bs) = Pandoc m (bs ++ linkTable bs) 12 | 13 | linkTable :: [Block] -> [Block] 14 | linkTable p = [Header 2 ("linkTable", [], []) [Str "Links"] , Para links] 15 | where 16 | links = concatMap makeRow $ query getLink p 17 | getLink (Link txt (url, _)) = [(url,txt)] 18 | getLink _ = [] 19 | makeRow (url, txt) = txt ++ [Str ":", Space, Link [Str url] (url, ""), LineBreak] 20 | -------------------------------------------------------------------------------- /video/Celegans_lateral_one_view_versus_deconvolved.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/video/Celegans_lateral_one_view_versus_deconvolved.mp4 -------------------------------------------------------------------------------- /video/Celegans_lateral_one_view_versus_deconvolved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/video/Celegans_lateral_one_view_versus_deconvolved.png -------------------------------------------------------------------------------- /video/Celegans_lateral_one_view_versus_deconvolved.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psteinb/meetingcpp2015/63742482a51a9ab30cc0f590516e5ee3d0918d08/video/Celegans_lateral_one_view_versus_deconvolved.webm --------------------------------------------------------------------------------