hunostor

English Button

Jul 30th, 2020 (edited)
1,636
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.39 KB | None | 0 0
  1. /*
  2.     CSS file ba beilleszteni
  3.     aztán a html file ba a menünek átadni a btn-english class-t, példa
  4.     <a href="https://evolution-health-and-diseases.com/" target="_blank" class="btn btn-blue main-btn btn-english">English</a>
  5.  
  6.  */
  7. .btn-english {
  8.   color: #000;
  9.   font-weight: bold;
  10.   /* border: 0px !important; */
  11.   background-repeat: no-repeat;
  12.   background-position: center;
  13.   background-size: 100% 50px;
  14.   background-image: linear-gradient(
  15.       90deg,
  16.       transparent 46%,
  17.       #c8102e 46%,
  18.       #c8102e 56%,
  19.       transparent 56%
  20.     ),
  21.     linear-gradient(
  22.       transparent 38%,
  23.       white 38%,
  24.       white 42%,
  25.       #c8102e 42%,
  26.       #c8102e 58%,
  27.       white 58%,
  28.       white 62%,
  29.       transparent 62%
  30.     ),
  31.     linear-gradient(
  32.       90deg,
  33.       transparent 44%,
  34.       white 44%,
  35.       white 46%,
  36.       #c8102e 46%,
  37.       #c8102e 56%,
  38.       white 56%,
  39.       white 58%,
  40.       transparent 58%
  41.     ),
  42.     linear-gradient(
  43.       33deg,
  44.       transparent 45%,
  45.       white 45%,
  46.       white 48%,
  47.       #c8102e 48%,
  48.       #c8102e 54%,
  49.       white 54%,
  50.       white 57%,
  51.       transparent 57%
  52.     ),
  53.     linear-gradient(
  54.       -33deg,
  55.       #012169 45%,
  56.       white 45%,
  57.       white 48%,
  58.       #c8102e 48%,
  59.       #c8102e 54%,
  60.       white 54%,
  61.       white 57%,
  62.       #012169 57%
  63.     );
  64. }
  65.  
  66. .btn-english:hover {
  67.   color: #660000 !important;
  68. }
  69.  
Advertisement
Add Comment
Please, Sign In to add comment