ASP Classic blog framework - BrainOrdure
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.

82 line
1.4KB

  1. :root {
  2. --brand-dark: #1a1a2e;
  3. --text-muted-soft: #6c757d;
  4. }
  5. body {
  6. background-color: #f8f9fa;
  7. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  8. color: #212529;
  9. }
  10. /* Navbar */
  11. .navbar.bg-dark {
  12. background-color: var(--brand-dark) !important;
  13. }
  14. .brand {
  15. font-size: 1.25rem;
  16. font-weight: 700;
  17. letter-spacing: -0.01em;
  18. color: #fff !important;
  19. }
  20. .brand-tagline {
  21. display: inline-block;
  22. font-size: 0.65rem;
  23. font-weight: 400;
  24. color: rgba(255,255,255,0.45);
  25. text-transform: uppercase;
  26. letter-spacing: 0.1em;
  27. margin-left: 0.5rem;
  28. vertical-align: middle;
  29. }
  30. .navbar .nav-link {
  31. font-size: 0.9rem;
  32. font-weight: 500;
  33. color: rgba(255,255,255,0.7) !important;
  34. padding-left: 1rem !important;
  35. padding-right: 1rem !important;
  36. transition: color 0.15s;
  37. }
  38. .navbar .nav-link:hover,
  39. .navbar .nav-link.active {
  40. color: #fff !important;
  41. }
  42. /* Main content */
  43. .site-main {
  44. padding-top: 2.5rem;
  45. padding-bottom: 3rem;
  46. min-height: calc(100vh - 60px);
  47. }
  48. /* Hero */
  49. .hero {
  50. border-bottom: 1px solid #e9ecef;
  51. }
  52. /* Cards */
  53. .card {
  54. border: 1px solid rgba(0,0,0,0.07);
  55. border-radius: 0.5rem;
  56. }
  57. .card.shadow-sm {
  58. box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  59. }
  60. /* Alerts (flash messages) */
  61. .alert {
  62. border-radius: 0.5rem;
  63. font-size: 0.9rem;
  64. }
  65. /* Post/article cards */
  66. article.card:hover {
  67. box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
  68. transition: box-shadow 0.2s;
  69. }

Powered by TurnKey Linux.