Advertisement
TurtleTrainer

tether.style

Jun 20th, 2015
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 6.59 KB | None | 0 0
  1. @import url(http://fonts.googleapis.com/css?family=Archivo+Narrow);
  2.  
  3.  
  4. /************background color of the page*************/
  5.  
  6.  
  7. body {
  8.     background: #222;
  9.     padding: 0; margin: 0;
  10. }
  11.  
  12. * { text-decoration: none !important; }
  13.  
  14.  
  15.  
  16. /************bold, italic, underline, and link cursor*************/
  17.  
  18.  
  19. b { color: #111 !important; }
  20. i { color: #B5C42B; }
  21. u { border-bottom: 1px dotted #666; }
  22. a { cursor: crosshair; }
  23.  
  24.  
  25.  
  26.  
  27. /*********************************************************************************/
  28. /*********************************************************************************/
  29. /*******************************INSIDE HTML PAGES**********************************/
  30. /*********************************************************************************/
  31. /*********************************************************************************/
  32.  
  33.  
  34.  
  35.  
  36. /************general font family, size, color, and background inside the HTML pages*************/
  37.  
  38.  
  39. #content {
  40.     font-family: Calibri, Helvetica, sans-serif;
  41.     font-size: 11px;
  42.     line-height: 18px;
  43.     color: #777 !important;
  44.     background: #f3f3f3;
  45.  
  46. }
  47.  
  48.  
  49. /************links*************/
  50.  
  51.  
  52.     #content a {
  53.         font-size: 10px;
  54.         letter-spacing: 2px;
  55.         text-transform: uppercase;
  56.         text-decoration: none !important;
  57.         color: #111 !important;
  58.         background: #f3f3f3;
  59.         padding: 2px 5px;
  60.         transition: 0.5s ease;
  61.             -moz-transition: 0.5s ease;
  62.             -webkit-transition: 0.5s ease;
  63.             -o-transition: 0.5s ease;
  64.             -ms-transition: 0.5s ease;
  65.     }
  66.  
  67.     #content a:hover {
  68.         color: #fff !important;
  69.         background: #B5C42B;
  70.     }
  71.    
  72.  
  73. /*****************headers**********************/
  74.  
  75.  
  76.     h1 {
  77.         float: left;
  78.         font-size: 20px;
  79.         font-family: Archivo Narrow, sans-serif;
  80.         letter-spacing: 3px;
  81.         text-transform: lowercase;
  82.         color: #B5C42B !important;
  83.         padding: 0 20px;
  84.     }
  85.    
  86.     h2 {
  87.         font-size: 13px;
  88.         font-family: Archivo Narrow, sans-serif;
  89.         letter-spacing: 3px;
  90.         text-transform: lowercase;
  91.         color: #111 !important;
  92.     }
  93.    
  94.     h3 {
  95.         font-family: Calibri, Helvetica, sans-serif;
  96.         font-size: 8px;
  97.         letter-spacing: 3px;
  98.         text-transform: uppercase;
  99.         text-align: center;
  100.         color: #111 !important;
  101.         background: #B5C42B;
  102.         padding: 12px 0;
  103.     }
  104.  
  105.  
  106.  
  107.  
  108. /*********************************************************************************/
  109. /*********************************************************************************/
  110. /**********************OVERALL STRUCTURE OF LAYOUT*********************************/
  111. /*********************************************************************************/
  112. /*********************************************************************************/
  113.  
  114.  
  115.  
  116. /****************this contains the entire layout*********************/
  117.  
  118. #stuff {
  119.     width: 900px;
  120.     background-color: #f9f9f9;
  121.     font-family: Calibri, Helvetica, sans-serif;
  122.     font-size: 11px;
  123.     color: #777 !important;
  124.     margin: 0 auto 40px;
  125.     border-radius: 10px;
  126.     box-shadow: #111 0 0 5px;
  127. }
  128.  
  129.     #stuff a {
  130.         font-size: 8px;
  131.         letter-spacing: 2px;
  132.         text-transform: uppercase;
  133.         transition: 0.5s ease;
  134.             -moz-transition: 0.5s ease;
  135.             -webkit-transition: 0.5s ease;
  136.             -o-transition: 0.5s ease;
  137.             -ms-transition: 0.5s ease;
  138.     }
  139.  
  140.  
  141. /**********************menu: contains add, block, message, report links***********************/
  142.  
  143.  
  144. #menu {
  145.     background-color: #111;
  146.     padding: 50px 0 25px;
  147.     border-bottom: 1px solid #222;
  148.     border-top-left-radius: 8px;
  149.     border-top-right-radius: 8px;
  150.     text-align: right;
  151. }
  152.  
  153.     #menu a {
  154.         display: inline-block;
  155.         padding-top: 5px;
  156.         width: 25px;
  157.         height: 20px;
  158.         border-radius: 50px;
  159.         border: 1px solid #222;
  160.         letter-spacing: 0 !important;
  161.         font-size: 12px;
  162.         text-align: center;  
  163.         margin: 0 7px;
  164.         color: #B5C42B !important;
  165.     }
  166.    
  167.     #menu a:hover {
  168.         border-color: #fff;
  169.     }
  170.  
  171.  
  172.  
  173. /*******************this controls your Username in the upper left corner***********************/
  174.  
  175.  
  176.     #menu h4 {
  177.         position: relative;
  178.         top: 70px;
  179.         width: 500px;
  180.         text-align: left;
  181.         font-size: 30px;
  182.         font-family: Archivo Narrow, sans-serif;
  183.         letter-spacing: 3px;
  184.         text-transform: lowercase;
  185.         color: #CDDB51 !important;
  186.         margin-left: 20px;
  187.     }
  188.  
  189.  
  190.  
  191. /**********************nav: contains link001, link002, link003, etc***********************/
  192.  
  193.  
  194.  
  195. #nav {
  196.     background-color: #111;
  197.     padding: 20px 0;
  198. }
  199.  
  200.     #nav a {
  201.         display: inline-block;
  202.         padding: 6px 10px;
  203.         margin: 0 10px;
  204.         background: #111;
  205.         color: #fff !important;
  206.     }
  207.    
  208.     #nav a:hover {
  209.         color: #111 !important;
  210.         background: #B5C42B;
  211.     }
  212.  
  213.  
  214.  
  215. /**********************dimensions of slideshow***********************/
  216.  
  217.  
  218.  
  219. #slideshow {
  220.     width: 900px;
  221.     height: 280px;
  222.     margin-bottom: 20px;
  223. }
  224.  
  225.  
  226. /**********************dimensions of iframe***********************/
  227.  
  228.  
  229.  
  230. #framemain {
  231.     float: left;
  232.     width: 600px;
  233.     height: 500px;
  234.     margin-left: 20px;
  235.     margin-top: 20px;
  236.     padding: 10px 7px 7px;
  237.     background: #f3f3f3;
  238.     border-top: 10px solid #111;
  239. }
  240.  
  241.  
  242.  
  243. /*************the Basics section on the right side of the layout**************/
  244.  
  245.  
  246.  
  247.  
  248. #basics {
  249.     float: right;
  250.     width: 200px;
  251.     height: 500px;
  252.     margin-right: 20px;
  253.     margin-top: 20px;
  254.     line-height: 15px;
  255.     border-bottom: 10px solid #111;
  256. }
  257.  
  258.     #basics h5 {
  259.         font-size: 13px;
  260.         font-family: Archivo Narrow, sans-serif;
  261.         letter-spacing: 3px;
  262.         text-transform: lowercase;
  263.         background: #111;
  264.         color: #B5C42B !important;
  265.         padding: 10px;
  266.         margin: 0 auto 20px;
  267.     }
  268.  
  269.     #avp {
  270.         background: #fff;
  271.         padding: 8px;
  272.         border: 1px solid #ddd;
  273.         margin: 0 auto 10px 10px;
  274.         transition: 0.5s ease;
  275.             -moz-transition: 0.5s ease;
  276.             -webkit-transition: 0.5s ease;
  277.             -o-transition: 0.5s ease;
  278.             -ms-transition: 0.5s ease;
  279.     }
  280.  
  281.     #avp:hover {
  282.         border-color: #C0D40F;
  283.     }
  284.  
  285.  
  286. /**********************external links at the bottom of the layout***********************/
  287.  
  288.  
  289.  
  290. #links {
  291.     width: 860px;
  292.     border-top: 1px solid #ddd;
  293.     padding: 30px 0;
  294.     margin: 70px 20px;
  295. }
  296.  
  297.     #links h2 {
  298.         display: inline-block;
  299.         margin: 0 10px;
  300.     }
  301.  
  302.     #links a {
  303.         padding: 8px 12px;
  304.         margin: 0 10px;
  305.         color: #555 !important;
  306.         transition: 0.5s ease;
  307.             -moz-transition: 0.5s ease;
  308.             -webkit-transition: 0.5s ease;
  309.             -o-transition: 0.5s ease;
  310.             -ms-transition: 0.5s ease;
  311.     }
  312.  
  313.     #links a:hover {
  314.         color: #111 !important;
  315.     }
  316.  
  317.  
  318.  
  319. /**********************highlight effect ***********************/
  320.  
  321.  
  322.  
  323. ::selection { color: #fff; background: #B5C42B; }
  324. ::-moz-selection { color: #fff; background: #B5C42B; }
  325. ::-webkit-selection { color: #fff; background: #B5C42B; }
  326. ::-o-selection { color: #fff; background: #B5C42B; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement