Advertisement
Guest User

Untitled

a guest
Feb 16th, 2020
1,998
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.93 KB | None | 0 0
  1.  
  2. .card {
  3.  font-family: Noto Sans CJK JP Regular;
  4.  font-size: 20px;
  5.  text-align: center;
  6.  color: black;
  7.  background-color: #grey;
  8.  background: url("bg.jpg") fixed;
  9.  background-size: contain;
  10.  
  11. }
  12.  
  13.  
  14. .graybg {
  15.  background-color: #353d3d;
  16.  top: -3px;
  17.  padding: 15px;
  18.  padding-bottom: 15px;
  19.  padding-left: 30px;
  20.  padding-right: 30px;
  21.  border-radius: 7px;
  22.  color: #fff;
  23.  position: relative;
  24.  left: 0;
  25.  opacity: 0.98;
  26.  box-shadow: 0 7px 15px rgba(0,0,0,.9);
  27. }
  28.  
  29.  
  30.  .whitebg {
  31.  position: relative;
  32.  top: -3px;
  33.  background-color: #fff;
  34.  padding: 15px;
  35.  padding-bottom: 15px;
  36.  padding-left: 30px;
  37.  padding-right: 30px;
  38.  border-radius: 7px;
  39.  color: #016ea6;
  40.  font-size: 20px;
  41.  text-align: center;
  42.  opacity: 0.98;
  43.  box-shadow: 0 7px 15px rgba(0,0,0,.9)
  44.  }
  45.  
  46. a:link {
  47.   color: #c75b5b;
  48. }
  49.  
  50. hr { margin-top: 5px; margin-bottom: 4px; }
  51. .highlight{ color: #c75b5b; }
  52. .big {  font-size: 36px; }
  53. .huge { font-size: 48px; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement