No Description

tienda.css 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. :root {
  2. --colorOscuro : #a31515;
  3. --colorGris : #c9d3eb;
  4. --colorVerde : #96DC6B;
  5. }
  6. .cosaDeBoton {
  7. border: 2px solid var(--colorOscuro);
  8. padding: 20px;
  9. font-size: 30px;
  10. margin: 4px 2% 140px;
  11. border-radius: 12px;
  12. width: 250px;
  13. height: 150px;
  14. color: white;
  15. }
  16. .boton
  17. {
  18. background-color: var(--colorVerde);
  19. color: var(--colorOscuro);
  20. text-align: center;
  21. text-decoration: none;
  22. /* cursor: pointer; */
  23. display: inline-block;
  24. color: white;
  25. }
  26. .boton:hover {
  27. text-decoration: none;
  28. }
  29. .header {
  30. background-color: var(--colorOscuro);
  31. color: #ffffff;
  32. width: 100%;
  33. height: 80px;
  34. line-height: 80px;
  35. text-align: center;
  36. font-size: 60px;
  37. }
  38. .btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
  39. background-color: var(--colorOscuro);
  40. }
  41. .card{
  42. width: 18rem;
  43. height: 35rem;
  44. background-color: rgba(219, 226,230, 0.6)
  45. }
  46. }
  47. .card-body{
  48. opacity: 1;
  49. filter :alpha(opacity=100);
  50. }
  51. body{
  52. background-image: url('/static/pexels-tbee-82256.jpg')
  53. }
  54. .card-img-top{
  55. height: 18rem;
  56. opacity: 1;
  57. filter :alpha(opacity=100);
  58. }
  59. .navbar{
  60. background-color: rgba(219, 226,230, 0.85)
  61. }
  62. .nav-link{
  63. color: #a31515;
  64. }
  65. .jumbotron-fluid{
  66. background-color: rgba(253, 117, 117, 0.534)
  67. }
  68. .custom-toggler.navbar-toggler {
  69. border-color: #a31515;
  70. }
  71. /* Setting the stroke to green using rgb values (0, 128, 0) */
  72. .custom-toggler .navbar-toggler-icon {
  73. background-image: url(
  74. "data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(163, 21, 21, 0.6)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  75. }
  76. a:hover {
  77. border-bottom: 3px solid #a31515;
  78. }
  79. a.active {
  80. border-bottom: 3px solid #a31515;
  81. }