Guest User

Untitled

a guest
Sep 19th, 2012
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <meta charset=utf-8>
  3. <html lang=en>
  4. <head>
  5.     <title>
  6.         Ubuntu Logo
  7.     </title>
  8.     <link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
  9.     <style type="text/css">
  10.         body {
  11.             background: #DD4814;
  12.         }
  13.  
  14.         #main-container {
  15.             margin-left:auto;
  16.             margin-right:auto;
  17.             background: transparent;
  18.         }
  19.  
  20.         #ubuntu-container {
  21.             background: transparent;
  22.             margin: 71.25px;
  23.         }
  24.  
  25.         p.ubuntu {
  26.             color: white;
  27.             font-family: 'Ubuntu', sans-serif;
  28.             font-size: 570px;
  29.         }
  30.  
  31.         #ubuntu-CoF-container {
  32.             background: transparent;
  33.             width: 285px;
  34.             height: 285px;
  35.             margin-left: 25%;
  36.             margin-bottom: 25%;
  37.             float: right;
  38.             vertical-align: text-top;
  39.         }
  40.  
  41.         #ubuntu-CoF-bg {
  42.             background: white;
  43.             width: 285px;
  44.             height: 285px;
  45.         }
  46.  
  47.         #ubuntu-CoF-orangeCircle {
  48.             background: #DD4814;
  49.             position: absolute;
  50.             width: 166px;
  51.             height: 166px;
  52.             border-radius: 50%;
  53.             margin: 60px;
  54.         }
  55.  
  56.         #ubuntu-CoF-whiteMask {
  57.             width: 67%;
  58.             height: 67%;
  59.             background: white;
  60.             border-radius:50%;
  61.             margin: 16.265%;
  62.         }
  63.  
  64.         #ubuntu-CoF-whiteBar {
  65.             position: absolute;
  66.             background: white;
  67.             height: 3.5%;
  68.             width: 50%;
  69.             margin-left: 50%;
  70.             margin-top: 50%;
  71.         }
  72.  
  73.         #ubuntu-CoF-whiteBar.bottomLeft {
  74.             -moz-transform-origin: 100% 100%;
  75.             -moz-transform: translateX(-100%) rotate(-60deg);
  76.         }
  77.        
  78.         #ubuntu-CoF-whiteBar.topLeft {
  79.             -moz-transform-origin: 0% 0%;
  80.             /*Is this some sort of bug? I need to displace it double the calculation's value for some reason*/
  81.             -moz-transform: translateY(-1300%) translateX(-50%) rotate(60deg);
  82.         }
  83.  
  84.         #ubuntu-faceBackground {
  85.             position: absolute;
  86.             width: 50%;
  87.             height: 50%;
  88.             background: purple;
  89.         }
  90.  
  91.         /*#ubuntu-faceBackground.top {
  92.             margin-left: 165px;
  93.             margin-top: 36px;
  94.         }
  95.  
  96.         #ubuntu-faceBackground.bottomRight {
  97.             margin-left: 165px;
  98.             margin-top: 200px;
  99.         }
  100.  
  101.         #ubuntu-faceBackground.bottomLeft {
  102.             margin-left: 23px;
  103.             margin-top: 118px;
  104.         }*/
  105.  
  106.         #ubuntu-faceForeground {
  107.             position: absolute;
  108.             width: 39px;
  109.             height: 39px;
  110.             border-radius: 50%;
  111.             background: #DD4814;
  112.         }
  113.  
  114.         #ubuntu-faceForeground.top {
  115.             margin-top: 3px;
  116.             margin-left: 6px;
  117.         }
  118.  
  119.         #ubuntu-faceForeground.bottomLeft {
  120.             margin-top: 5px;
  121.             margin-left: 3px;
  122.             margin-right: 7px;
  123.         }
  124.  
  125.         #ubuntu-faceForeground.bottomRight {
  126.             margin-bottom: 4px;
  127.             margin-left: 6px;
  128.             margin-right: 5px;
  129.             margin-top: 6px;
  130.         }
  131.     </style>
  132. </head>
  133. <body>
  134.     <div id="ubuntu-CoF-bg">
  135.         <div id="ubuntu-faceBackground"> </div>
  136.     </div>
  137. </body>
  138. </html>
Advertisement
Add Comment
Please, Sign In to add comment