zoukankan      html  css  js  c++  java
  • prototype.css

    /*-----------------------------------------------------------------------------
    Prototype Style Sheet (empty commented stylesheet)
    
    version:   1.0
    author:    andy budd
    email:     info@andybudd.com
    website:   http://www.andybudd.com/
    -----------------------------------------------------------------------------*/
    
    /* =General
    -----------------------------------------------------------------------------*/
    
    
    /* Remove padding and margin */
    * {
      margin: 0;
        padding: 0;
    }
    
    /* Put it back on certain elements */
    h1, h2, h3, h4, h5, h6, p, pre, blockquote, form, fieldset, table, ul {
      margin: 1em 0;
    }
    
    /* Class for clearing floats */
    .clear {
        clear:both;
    }
    
    
    /* Remove border around linked images */
    img {
        border: 0;
    }
    
    
    /* =Typography
    -----------------------------------------------------------------------------*/
    
    body {
      font: 62.5%/1.6 "Lucida Grande", "Lucida Sans", "Trebuchet MS", Tahoma, Verdana, sans-serif;
    }
    
    
    /* =Headings
    -----------------------------------------------------------------------------*/
    
    
    
    /* =Links
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Branding
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Main Nav
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Sub Nav
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Main Content
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Secondary Content
    -----------------------------------------------------------------------------*/
    
    
    
    /* =Footer
    -----------------------------------------------------------------------------*/
    
    
    
    /* =Forms
    -----------------------------------------------------------------------------*/
    
    /* Removes fieldset borders. even on Opea 7 */
    fieldset {
      border: 1px solid transparent;
    }
    
    
    /* =Tables
    -----------------------------------------------------------------------------*/
    
    table { 
      border-spacing: 0;
        border-collapse: collapse;
    }
    
    td {
      text-align: left;
        font-weight: normal;
    }
    
    
    
    /* =Misc 1
    -----------------------------------------------------------------------------*/
    
    
    
    /* =Misc 2
    -----------------------------------------------------------------------------*/
  • 相关阅读:
    BZOJ4821 SDOI2017相关分析(线段树)
    BZOJ3167/BZOJ4824 HEOI2013SAO/CQOI2017老C的键盘(树形dp)
    BZOJ4820 SDOI2017硬币游戏(概率期望+高斯消元+kmp)
    BZOJ4811 Ynoi2017由乃的OJ(树链剖分+线段树)
    BZOJ4810 Ynoi2017由乃的玉米田(莫队+bitset)
    Codeforces Round #522 Div. 1 没打记
    BZOJ4784 ZJOI2017仙人掌(树形dp+dfs树)
    43. Multiply Strings
    2. Add Two Numbers
    150. Evaluate Reverse Polish Notation
  • 原文地址:https://www.cnblogs.com/xiaokaike/p/3135311.html
Copyright © 2011-2022 走看看