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.

148 lines
2.4 KiB

  1. /*******************************
  2. Standard Example
  3. *******************************/
  4. /* font */
  5. @font-face {
  6. font-family: 'Neutraface';
  7. src:
  8. url("fonts/neutraface-book.otf") format('opentype')
  9. ;
  10. font-weight: normal;
  11. font-style: normal;
  12. }
  13. @font-face {
  14. font-family: 'Neutraface Bold';
  15. src:
  16. url("fonts/neutraface-bold.otf") format('opentype')
  17. ;
  18. font-weight: normal;
  19. font-style: normal;
  20. }
  21. body#example {
  22. font-family: "Neutraface", "Helvetica Neue", "Arial", sans-serif;
  23. background-color: #FCFCFC;
  24. padding-bottom: 150px;
  25. }
  26. /* links */
  27. a {
  28. color: #009FDA;
  29. text-decoration: none;
  30. }
  31. a:hover {
  32. color: #00BAFF;
  33. }
  34. #example h1,
  35. #example h2,
  36. #example h3,
  37. #example h4,
  38. #example h5,
  39. #example a,
  40. #example .ui {
  41. font-family: "Neutraface Bold", "Helvetica Neue", "Arial", sans-serif;
  42. }
  43. /* text and headers */
  44. #example h1 {
  45. margin: 20px 0px 20px;
  46. }
  47. #example h2 {
  48. margin: 40px 0px 20px;
  49. }
  50. #example h3 {
  51. font-size: 20px;
  52. margin: 40px 0px 15px;
  53. }
  54. #example h4 {
  55. font-size: 16px;
  56. color: #555555;
  57. }
  58. #example pre {
  59. background-color: #F0F0F0;
  60. }
  61. #example p {
  62. margin: 10px 0px;
  63. }
  64. /* lists */
  65. #example ol {
  66. list-style-position: inside;
  67. margin: 10px 0px 40px;
  68. padding: 0px;
  69. }
  70. #example ol li {
  71. list-style-type: decimal;
  72. margin: 0px 0px 10px;
  73. }
  74. #example .list {
  75. list-style-position: inside;
  76. margin: 10px 0px 40px;
  77. padding: 0px;
  78. }
  79. #example .list li {
  80. list-style-type: disc;
  81. margin: 0px 0px 10px;
  82. }
  83. /* content */
  84. #example .container {
  85. width: 700px;
  86. margin: 0px auto;
  87. }
  88. #example .shortcuts {
  89. float: right;
  90. clear: both;
  91. }
  92. /*******************************
  93. Shapes Example
  94. *******************************/
  95. #example .demo.shape {
  96. }
  97. #example .demo.shape .side {
  98. width: 250px;
  99. height: 250px;
  100. -webkit-box-sizing: border-box;
  101. -moz-box-sizing: border-box;
  102. -ms-box-sizing: border-box;
  103. box-sizing: border-box;
  104. background-color: #E6E6E6;
  105. color: #FFFFFF;
  106. -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  107. -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  108. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
  109. }
  110. #example .demo.shape .side img {
  111. display: block;
  112. margin: 0px auto;
  113. max-width: 100%;
  114. }
  115. #example .demo.shape .side b {
  116. display: block;
  117. position: absolute;
  118. top: 50%;
  119. width: 100%;
  120. font-size: 80px;
  121. margin-top: -48px;
  122. text-align: center;
  123. }
  124. #example .demo.rectangle.shape .side {
  125. width: 350px;
  126. }