Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

109 lines
2.0KB

  1. /*
  2. * vncnt,css
  3. * Copyright 2017, Vincent Messow
  4. * vncnt.eu
  5. * Free to use under the MIT license.
  6. * http://www.opensource.org/licenses/mit-license.php
  7. *
  8. * This file expects to inherit a ton of stuff from skeleton.css
  9. */
  10. /* Media Queries
  11. –––––––––––––––––––––––––––––––––––––––––––––––––– */
  12. /*
  13. Note: The best way to structure the use of media queries is to create the queries
  14. near the relevant code. For example, if you wanted to change the styles for buttons
  15. on small devices, paste the mobile query code up in the buttons section and style it
  16. there.
  17. */
  18. @import url('skeleton.css');
  19. .landingpage, .error404 {
  20. position: absolute;
  21. top: 50%;
  22. left: 50%;
  23. margin-right: -50%;
  24. transform: translate(-50%, -50%);
  25. max-width: 90%;
  26. }
  27. .error404 {
  28. text-transform: uppercase;
  29. text-align: center;
  30. }
  31. body {
  32. background: #151515;
  33. color: #ddd;
  34. }
  35. p.reset-margin {
  36. margin-bottom: 1rem; /*skeleton.css: 2.5rem*/
  37. }
  38. .avatar {
  39. width: 20rem;
  40. border-radius: 50%;
  41. -webkit-border-radius: 50%;
  42. -moz-border-radius: 50%;
  43. max-width: 60%;
  44. box-sizing: border-box;
  45. display: block;
  46. margin: auto;
  47. }
  48. .autocenter {
  49. text-align: center;
  50. }
  51. .icons {
  52. }
  53. .icon {
  54. text-rendering: geometricPrecision !important;
  55. text-decoration: none;
  56. border-bottom: none;
  57. position: relative;
  58. color: #888;
  59. }
  60. .icon:hover {
  61. color: #ADDED9
  62. }
  63. /* Larger than mobile */
  64. @media (min-width: 400px) {}
  65. /* Larger than phablet (also point when grid becomes active) */
  66. @media (min-width: 550px) {
  67. .landingpage, .error404 {
  68. position: absolute;
  69. top: 50%;
  70. left: 50%;
  71. margin-right: -50%;
  72. transform: translate(-50%, -50%);
  73. max-width: 75%;
  74. }
  75. .avatar {
  76. max-width: 100%;
  77. box-sizing: border-box;
  78. float: right;
  79. }
  80. .autocenter {
  81. text-align: left;
  82. }}
  83. /* Larger than tablet */
  84. @media (min-width: 750px) {}
  85. /* Larger than desktop */
  86. @media (min-width: 1000px) {}
  87. /* Larger than Desktop HD */
  88. @media (min-width: 1200px) {}