Advertisement
Guest User

☂ 」INOGAKU ⦙ app - bbxml

a guest
Dec 4th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. <bbxml>
  2.  
  3. <classes>
  4.  
  5. <class name="body">
  6. position: relative;
  7. background: #fafafa;
  8. text-align: left;
  9. font-size: initial;
  10. font-smoothing: antialiased;
  11. -webkit-font-smoothing: antialiased;
  12. -moz-osx-font-smoothing: grayscale;
  13. overflow: hidden;
  14. width: 100%;
  15. box-sizing: border-box;
  16. padding: 10% 13%;
  17. max-width: 800px;
  18. margin: auto;
  19. margin-top: 5%;
  20. margin-bottom: 5%;
  21. </class>
  22.  
  23. <class name="header">
  24. display: block;
  25. text-align: center;
  26. padding: 30px 0px 20px 0px;
  27. font-size: initial;
  28. text-transform: lowercase;
  29. </class>
  30.  
  31. <class name="title">
  32. color: #4f4f4f;
  33. font-family: 'Roboto', sanserif;
  34. font-size: 1.7em;
  35. line-height: 1.5em;
  36. font-weight: 900;
  37. </class>
  38.  
  39. <class name="stretch">
  40. display:inline-block;
  41. transform: scale(1.07,1);
  42. -webkit-transform: scale(1.07,1);
  43. </class>
  44.  
  45. <class name="subtitle">
  46. display: block;
  47. font-size: .85em;
  48. line-height: .85em;
  49. color: #939393;
  50. font-family: 'Ovo', serif;
  51. </class>
  52.  
  53. <class name="textblock">
  54. display: block;
  55. width: 100%;
  56. box-sizing: border-box;
  57. margin-bottom: 50px;
  58. padding: 0px 20px 20px 20px;
  59. background: #FFF;
  60. border: 1px solid #ededed;
  61. border-top: none;
  62. position: relative;
  63. </class>
  64.  
  65. <class name="textblock-title">
  66. display: block;
  67. position: relative;
  68. border-bottom: 1px solid #ededed;
  69. color: #4f4f4f;
  70. font-family: 'Roboto', sanserif;
  71. font-size: .9em;
  72. font-weight: 900;
  73. box-shadow: 0px 10px 0px #FFF;
  74. padding-top: 20px;
  75. background: #FFF;
  76. </class>
  77.  
  78. <class name="topborder">
  79. display: block;
  80. width: calc(100% + 42px);
  81. margin-left: -21px;
  82. height: 1px;
  83. background: #ededed;
  84. font-size: 0px;
  85. </class>
  86.  
  87. </classes>
  88.  
  89.  
  90. <templates>
  91.  
  92. <template name="textblock">
  93. <d c="textblock">
  94. <d c="topborder">@sugarvine</d>
  95. <d c="textblock-title">
  96. <d c="stretch" o="margin-left: 3px; padding: 3px 4px; border-bottom: 1px solid #4f4f4f; position: relative; bottom: -1px;">
  97. {subheading}
  98. </d>
  99. </d>
  100. <d o="margin-top: 15px; font-family: 'Ovo', serif; font-size: .8em; color: #818181; text-align: justify;">{text}</d>
  101. </d>
  102. </template>
  103.  
  104. <template name="heading">
  105. <d c="header">
  106. <d c="title">
  107. <d c="stretch">{fullname}</d>
  108. </d>
  109. <d c="subtitle">{departmentandmajor}</d>
  110. </d>
  111. </template>
  112.  
  113. <template name="imageblock">
  114. <d c="textblock" o="border: 1px solid #ededed; pointer-events: none; font-size: 0px; text-align: center; padding: 20px;">
  115. {image}
  116. </d>
  117. </template>
  118.  
  119. </templates>
  120.  
  121. <body>
  122.  
  123. <d c="body">
  124. <include template="heading">
  125. <p name="fullname">full name here</p>
  126. <p name="departmentandmajor">sge/stem/pfa department: specialization</p>
  127. </include>
  128. <include template="imageblock">
  129. <p name="image">image here</p>
  130. </include>
  131. <include template="textblock">
  132. <p name="subheading">character's preferred name</p>
  133. <p name="text">
  134. Talk about your character here, touching on personality, history and anything else of note. Keep it concise; it's a point against you if you get long-winded about your description. I do suggest focusing more on personality than history though, as this is meant to help others avoid making similar archetypes.
  135. </p>
  136. </include>
  137. </d>
  138. </body>
  139.  
  140. </bbxml>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement