Sitepoint demo app for learning to use Sinatra
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

75 lines
1.5 KiB

  1. html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote, pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt, dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article, aside, canvas, details,figcaption,figure,footer,header,hgroup,menu,nav,section, summary,time,mark,audio,video {
  2. margin:0;
  3. padding:0;
  4. border:0;
  5. outline:0;
  6. font-size:100%;
  7. vertical-align:
  8. baseline;
  9. background:transparent;
  10. line-height:1;
  11. }
  12. body{font-family:ubuntu,sans;}
  13. #footer {
  14. display:block;
  15. margin-top:20px;
  16. border-top:3px solid #4b947d;
  17. padding:10px;
  18. }
  19. h1 {
  20. color:#95524C;
  21. margin:5px 40px;
  22. font-size:72px;
  23. font-weight:bold;
  24. font-family:Megrim,sans;
  25. }
  26. .button {
  27. background:#4b7194;
  28. color:#fff;
  29. text-transform:uppercase;
  30. border-radius:12px;
  31. border:none;
  32. font-weight:bold;
  33. font-size:16px;
  34. padding: 6px 12px;
  35. margin-left:40px;
  36. cursor:pointer;
  37. &:hover{background:#54A0E7;}
  38. }
  39. #robots {
  40. list-style:none;
  41. overflow:hidden;
  42. margin:20px;
  43. }
  44. .robot {
  45. float:left;
  46. width:100px;
  47. padding:10px 0;
  48. position:relative;
  49. form {
  50. display:none;
  51. position:absolute;
  52. top:0;
  53. right:0;
  54. }
  55. &:hover form {
  56. display:block;
  57. }
  58. form input {
  59. background:rgba(#000,0.7);
  60. padding:0 4px;
  61. color:white;
  62. cursor:pointer;
  63. font-size:32px;
  64. font-weight:bold;
  65. text-decoration:none;
  66. border-radius:16px;
  67. line-height:0.8;
  68. border:none;
  69. }
  70. img {
  71. display:block;
  72. padding:0 10px;
  73. }
  74. }