Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 915... Línea 915...
915
.rui-special-list--primary {
915
.rui-special-list--primary {
916
  li {
916
  li {
917
    &:before {
917
    &:before {
918
      background-color: var(--primary-color-200);
918
      background-color: var(--primary-color-200);
919
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='#{url-friendly-colour($gray-800)}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M5.75 12.8665L8.33995 16.4138C9.15171 17.5256 10.8179 17.504 11.6006 16.3715L18.25 6.75'%3E%3C/path%3E%3C/svg%3E%0A");
919
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='#{url-friendly-colour($gray-800)}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M5.75 12.8665L8.33995 16.4138C9.15171 17.5256 10.8179 17.504 11.6006 16.3715L18.25 6.75'%3E%3C/path%3E%3C/svg%3E%0A");
920
 
-
 
921
      .theme-dark & {
-
 
922
        background-color: $primary-color-800;
-
 
923
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='#{url-friendly-colour($primary-color-500)}' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M5.75 12.8665L8.33995 16.4138C9.15171 17.5256 10.8179 17.504 11.6006 16.3715L18.25 6.75'%3E%3C/path%3E%3C/svg%3E%0A");
-
 
924
      }
-
 
925
    }
920
    }
926
  }
921
  }
927
}
922
}
Línea 928... Línea 923...
928
 
923
 
Línea 953... Línea 948...
953
}
948
}
Línea 954... Línea 949...
954
 
949
 
955
.rui-pricing-table--special {
950
.rui-pricing-table--special {
956
  background-color: var(--primary-color-100);
951
  background-color: var(--primary-color-100);
957
  border-color: var(--primary-color-300);
952
  border-color: var(--primary-color-300);
Línea 958... Línea 953...
958
  border-left: 2px dashed $primary-color-300 !important;
953
  border-left: 2px dashed var(--primary-color-300) !important;
959
 
954
 
960
  .theme-dark & {
955
  .theme-dark & {
961
    background-color: $primary-color-800;
956
    background-color: var(--primary-color-800);
Línea 962... Línea 957...
962
    border-color: var(--main-theme-color);
957
    border-color: var(--main-theme-color);
963
  }
958
  }
Línea 995... Línea 990...
995
 
990
 
996
  background-color: var(--primary-color-100);
991
  background-color: var(--primary-color-100);
Línea 997... Línea 992...
997
  border-radius: $btn-border-radius-md;
992
  border-radius: $btn-border-radius-md;
998
 
993
 
999
  .theme-dark & {
994
  .theme-dark & {
Línea 1000... Línea 995...
1000
    background-color: $primary-color-800;
995
    background-color: var(--primary-color-800);
1001
  }
996
  }
1002
 
997
 
Línea 1763... Línea 1758...
1763
    }
1758
    }
1764
  }
1759
  }
1765
}
1760
}
Línea 1766... Línea 1761...
1766
 
1761
 
1767
.rui-list--gap {
1762
.rui-list--gap {
-
 
1763
  display: flex;
1768
  display: grid;
1764
  flex-wrap: wrap;
1769
  row-gap: 30px;
1765
  gap: 60px;
Línea 1770... Línea 1766...
1770
}
1766
}
1771
 
1767
 
1772
.rui-img-mask--grayscale {
1768
.rui-img-mask--grayscale {
1773
  img {
1769
  img {
1774
    filter: grayscale(1);
1770
    filter: grayscale(1);
-
 
1771
  }
-
 
1772
}
-
 
1773
 
-
 
1774
// Video Popup
-
 
1775
#video-popup {
-
 
1776
  background-color: rgb(25, 25, 25);
-
 
1777
  position: fixed;
-
 
1778
  left: 0;
-
 
1779
  top: 0;
-
 
1780
  z-index: 99999;
-
 
1781
  width: 100%;
-
 
1782
  height: 100%;
-
 
1783
  display: flex;
-
 
1784
  align-items: center;
-
 
1785
  justify-content: center;
-
 
1786
  opacity: 0;
-
 
1787
  visibility: hidden;
-
 
1788
  transition: 500ms all;
-
 
1789
}
-
 
1790
 
-
 
1791
#video-popup:target {
-
 
1792
  opacity: 1;
-
 
1793
  visibility: visible;
-
 
1794
}
-
 
1795
 
-
 
1796
.vpopup {
-
 
1797
  width: 75%;
-
 
1798
  height: 600px;
-
 
1799
  overflow: hidden;
-
 
1800
  transform: scale(0.6);
-
 
1801
  transition: 500ms all;
-
 
1802
  position: relative;
-
 
1803
}
-
 
1804
 
-
 
1805
.vpopup-video {
-
 
1806
  width: 100%;
-
 
1807
  height: 100%;
-
 
1808
  object-fit: cover;
-
 
1809
}
-
 
1810
 
-
 
1811
#video-popup:target .vpopup {
-
 
1812
  transform: scale(1);
-
 
1813
}
-
 
1814
 
-
 
1815
.video-container {
-
 
1816
  background-size: cover;
-
 
1817
  position: relative;
-
 
1818
  border-radius: $btn-border-radius;
-
 
1819
  width: 200px;
-
 
1820
  height: 130px;
-
 
1821
  background-color: $gray-200;
-
 
1822
  transition: 350ms ease all;
-
 
1823
 
-
 
1824
  &:hover {
-
 
1825
    transform: scale(1.05);
-
 
1826
  }
-
 
1827
}
-
 
1828
 
-
 
1829
.vpopup-play {
-
 
1830
  &::before {
-
 
1831
    display: none;
-
 
1832
  }
-
 
1833
 
-
 
1834
  position: absolute;
-
 
1835
  top: calc(50% - 40px);
-
 
1836
  left: calc(50% - 40px);
-
 
1837
 
-
 
1838
  i {
-
 
1839
    color: #fff;
-
 
1840
    font-size: 60px;
-
 
1841
    transition: all 0.5s ease;
-
 
1842
 
-
 
1843
    padding: 10px;
-
 
1844
    border-radius: 100%;
-
 
1845
 
-
 
1846
  }
-
 
1847
 
-
 
1848
  i:hover {
-
 
1849
    opacity: .7;
-
 
1850
    color: #fff;
-
 
1851
  }
-
 
1852
 
-
 
1853
}
-
 
1854
 
-
 
1855
.vpopup-close {
-
 
1856
  position: absolute;
-
 
1857
  color: #fff;
-
 
1858
  left: 50%;
-
 
1859
  top: 10%;
-
 
1860
  transform: translate(-50%, -50%);
-
 
1861
 
-
 
1862
  a::before {
-
 
1863
    display: none;
-
 
1864
  }
-
 
1865
 
-
 
1866
  i {
-
 
1867
    color: #fff;
-
 
1868
    font-size: 50px;
-
 
1869
    transition: all 0.5s ease;
-
 
1870
  }
-
 
1871
 
-
 
1872
  a i:hover {
-
 
1873
    color: white;
-
 
1874
    font-size: 70px;
-
 
1875
  }
-
 
1876
}
1775
  }
1877