Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.77 KB | None | 0 0
  1. HTML:::
  2.  
  3. extends layout
  4.  
  5. block content
  6.   h1= title
  7.   p Hello, my name is
  8.       strong #{name}
  9.       and this is my personal webpage. I'm not a fan of fancy graphics, themes or effects and I hope you'll forgive me if you are.
  10.  
  11.   div(id="marcocentral")
  12.     div(id="foto")
  13.       img(src="/images/catfrog.jpg")
  14.     div(id="textofoto")
  15.       p mailto:
  16.         a(href="mailto:esteban.s.f0@gmail.com") esteban.s.f0@gmail.com  (personal)
  17.  
  18.   div(id="textoabajo")
  19.     ul(id="lista")
  20.       li
  21.         a(href="/about") About
  22.       li
  23.         a(href="http://twitter.com/fro_g") Twitter
  24.       li
  25.         <!--This one must me temporary, gotta set up my own private git/mercurial repo -->
  26.         a(href="https://github.com/fr0gs") Code - Github
  27.       li
  28.         <!--This one must me temporary, gotta set up my own private git/mercurial repo -->
  29.         a(href="https://bitbucket.org/fr0gs") Code - Bitbucket
  30.       li
  31.         a(href="http://deixapaso.wordpress.com") Blog (written in spanish)
  32.       li
  33.         a(href="/fun") Fun
  34.  
  35.  
  36.  
  37.  
  38.  
  39. CSS::::
  40.  
  41. @css {
  42.   #lista {
  43.     font-family: 'Gabriela', sans-serif;
  44.     font-size: 18px;
  45.   }
  46.   ::selection {
  47.       background:#FA5882;
  48.       color:#555;
  49.   }
  50.  
  51.   ::-moz-selection {
  52.       background:#FA5882;
  53.       color:#555;
  54.   }
  55.  
  56.   ::-webkit-selection {
  57.       background:#FA5882;
  58.       color:#555;
  59.   }
  60. }
  61. #cabecera
  62.   font-family: 'Gabriela', sans-serif
  63.   font-size: 24px
  64.  
  65.  (((AQUI ES DD NO TENGO NI IDEA, IGUALE S QUE DEBERIA HACER EL FLOAT
  66.     RELATIVO AL DIV GRANDE QUE LOS CONTIENE, PERO NO SE COMO HACERLO )))
  67.  
  68. #foto
  69.   float: left
  70. #textofoto
  71.   float: top
  72.  
  73.  
  74. h1
  75.   font-family: 'Lily Script One', cursive
  76.   font-size: 36px
  77. body
  78.   padding: 50px
  79.   font: 14px "Lucida Grande", Helvetica, Arial, sans-serif
  80. a
  81.   color: #00B7FF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement