Skip to content
Snippets Groups Projects
Select Git revision
  • 4bec504e6dde00fdac17358d9042070654719f39
  • annotation-on-video default protected
  • demo_ci
  • 3-upstream-01022023
  • master
  • gh3538-captions
  • 16-adapt-for-images-annot
  • 15-api-for-annotations-on-video
  • 15-annotations-on-videos
  • video_for_annotations
  • wip-1-annotations-on-videos
  • 9-videoviewer-tests
  • 9_wip_videotests
  • 6-fix-tests-and-ci
  • _fix_ci
  • wip-webpack-from-git
16 results

netlify.toml

Blame
  • reset.css 2.77 KiB
    /**
     *   Anchor, default reset
     */
    * {
    	margin: 0;
    	padding: 0;
    
    	-webkit-font-smoothing: antialiased;
    
    	/* Don't count padding and borders towards widths */
    	-webkit-box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	box-sizing: border-box;
    }
    
    /**
     *   Typographic reset
     */
    @font-face{
        font-family: Revalia;
        src: url(fonts/Revalia/Revalia-Regular.ttf)
    }
    @font-face{
        font-family: Cabin;
        src: url(fonts/Cabin/Cabin-Medium.ttf)
    }
    @font-face{
        font-family: Cabin-Bold;
        src: url(fonts/Cabin/Cabin-Bold.ttf)
    }
    /* Use a serif font for nice readability, but not Times */
    body {
    	font: 17px/26px Cabin;
    
    }
    
    h1, h2, h3, h4, h5, #top, .slidey b, .slidey label, .counter, input, textarea, button, .pagination {
    	font-family: Cabin-Bold;
    	font-weight: 300;
    }
    
    h1 a, h2 a, h3 a, h4 a, h5 a{
    	color : #6e8678;
    }
    
    #logo {
    	font-family: Revalia;
    	font-weight: 300;
    }
    
    pr, code, .mono {
    	font: 12px/19px "Anonymous Pro", Consolas, monospace;
    	padding: 0 2px;
    }
    
    p {
    	padding-bottom: 15px;
        text-align: justify;
    }
    
    pre {
    	padding: 15px 20px;
    	margin-bottom: 20px;
    
    	border-radius: 5px;
    	white-space: pre-wrap;
    }
    
    img {
    	max-width: 100%;