Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

zekena / Unit-calculator

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • Unit-calculator
  • other_calc
  • categories
  • simp_styles.css
Find file
BlameHistoryPermalink
  • yuward's avatar
    m · 67f45f24
    yuward committed 6 years ago
    67f45f24
simp_styles.css 1.41 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
/* general */

html { 
    height: 100%; width: 100%;
    margin: 0; padding: 0;
  }
  
  body {
    height: 100%; width: 100%;
    margin: 0; padding: 0;
    background: #EEE;
    font: 18px Georgia,Times,"Times New Roman",serif;
  }
  
  #main-content {
    width: 500px;
    margin: 0 auto; padding: 20px 0;
  }
  
  h1 {
    font: 30px Arial,"Helvetica Neue",Helvetica,sans-serif;
  }
  
  
  /* menu page */
  
  ul#measurement-types {
    list-style-type: none;
    margin: 1em 0; padding: 0;
  }
  
  ul#measurement-types li {
    height: auto;
    margin: 0 0 10px 0; padding: 0;
  }
  
  ul#measurement-types li a {
    text-decoration: none;
    color: black;
    display: block;
    background: white;
    padding: 16px 24px;
    width: 180px;
    border: 1px solid black;
  }
  
  ul#measurement-types li a:hover {
    color: white;
    background: #FDB912;
  }
  
  
  /* conversion forms */
  
  form label {
    display: inline-block;
    width: 45px;  
  }
  
  form input[type="text"] {
    width: 80px;
    font-size: 16px;
    line-height: 16px;
  }
  
  form select {
    margin: 1em 0;
    font-size: 14px;
  }
  
  form input[type="submit"] {
    font-size: 1em;
    text-decoration: none;
    color: black;
    display: block;
    background: white;
    margin: 2em 0 2em 25px;
    padding: 6px 12px;
    border: 1px solid black;
  }
  
  form input[type="submit"]:hover {
    color: white;
    background: #FDB912;
  }