My personal website's statics
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.
 
 
 

172 lines
3.0 KiB

  1. :root {
  2. /* Special */
  3. --background: #283149;
  4. --foreground: #dbedf3;
  5. --cursor: #a3c9de;
  6. /* Colors */
  7. --color0: #404b69;
  8. --color1: #0fff83;
  9. --color2: #2effaf;
  10. --color3: #2effaf;
  11. --color4: #2ee0ff;
  12. --color5: #3fb4d1;
  13. --color6: #c59820;
  14. --color7: #b02f30;
  15. --color8: #9ea7a6;
  16. --color9: #3f4944;
  17. --color10: #2a5491;
  18. --color11: #237986;
  19. --color12: #a03b1e;
  20. --color13: #484d79;
  21. --color14: #c59820;
  22. --color15: #b02f30;
  23. --color16: #373744;
  24. }
  25. @font-face {
  26. font-family: 'Hack';
  27. src: url("https://rinri-d.xyz/css/fonts/hack-regular.woff2") format('woff2'), url("https://rinri-d.xyz/css/fonts/hack-regular.woff") format('woff');
  28. font-weight: 400;
  29. font-style: normal;
  30. }
  31. @font-face {
  32. font-family: 'Hack';
  33. src: url("https://rinri-d.xyz/css/fonts/hack-bold.woff2") format('woff2'), url("https://rinri-d.xyz/css/fonts/hack-bold.woff") format('woff');
  34. font-weight: 700;
  35. font-style: normal;
  36. }
  37. @font-face {
  38. font-family: 'Hack';
  39. src: url("https://rinri-d.xyz/css/fonts/hack-italic.woff2") format('woff2'), url("https://rinri-d.xyz/css/fonts/hack-italic.woff") format('woff');
  40. font-weight: 400;
  41. font-style: italic;
  42. }
  43. @font-face {
  44. font-family: 'Hack';
  45. src: url("https://rinri-d.xyz/css/fonts/hack-bolditalic.woff2") format('woff2'), url("https://rinri-d.xyz/css/fonts/hack-bolditalic.woff") format('woff');
  46. font-weight: 700;
  47. font-style: italic;
  48. }
  49. html,
  50. body {
  51. height: 100%;
  52. background: var(--background);
  53. color: var(--foreground);
  54. font-family: "Hack", sans-serif;
  55. font-weight: 500;
  56. font-size: 20px;
  57. }
  58. .container {
  59. min-height: 100%;
  60. }
  61. .navbar {
  62. background-color: var(--color0);
  63. margin-bottom: 1em;
  64. }
  65. .leftimg {
  66. float: left;
  67. margin: 0px 7px 0px 7px;
  68. }
  69. .rightimg {
  70. float: right;
  71. margin: 0px 7px 0px 7px;
  72. }
  73. .item-info {
  74. display: inline-block;
  75. /*border: 1px solid ;*/
  76. border-radius: 8px;
  77. box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  78. padding: 10px;
  79. margin-top: 10px;
  80. text-align: left;
  81. background: var(--color0);
  82. }
  83. a {
  84. color: var(--color4);
  85. }
  86. a:hover {
  87. text-decoration: none;
  88. color: var(--color5);
  89. }
  90. h1 {
  91. color: var(--color1);
  92. }
  93. h2 {
  94. color: var(--color2);
  95. }
  96. h3 {
  97. color: var(--color3);
  98. }
  99. .navbar-default .navbar-brand {
  100. color: var(--color1);
  101. }
  102. img {
  103. width: 80%;
  104. margin-left: 10%;
  105. }
  106. .footer {
  107. margin-top: 100px;
  108. padding: 10px 0;
  109. width: 100%;
  110. text-align: center;
  111. background-color: var(--color0);
  112. }
  113. .logo {
  114. width: 33px;
  115. }
  116. hr {
  117. background-color: gray;
  118. }
  119. table {
  120. width: 100%;
  121. margin-bottom: 1rem;
  122. border: 1px solid #dee2e6;
  123. }
  124. td,
  125. th {
  126. padding: 0.75rem;
  127. vertical-align: top;
  128. border-top: 1px solid #dee2e6;
  129. border: 1px solid #dee2e6;
  130. }
  131. thead th {
  132. vertical-align: bottom;
  133. border-bottom: 2px solid #dee2e6;
  134. }
  135. tbody + tbody {
  136. border-top: 2px solid #dee2e6;
  137. }
  138. .textarea {
  139. color: black;
  140. }
  141. li {
  142. margin-bottom: 10px;
  143. }
  144. .indent-l{
  145. margin-left: 2rem;
  146. }