Advertisement
Guest User

badn.css

a guest
Aug 23rd, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.92 KB | None | 0 0
  1. html {
  2.  
  3. }
  4. body{
  5.   background: url('https://www.wallpaperup.com/uploads/wallpapers/2013/09/29/153315/3bf0bc93b9bf2475111c5454a74868f2-700.jpg') no-repeat center center fixed;
  6.   -webkit-background-size: cover;
  7.   -moz-background-size: cover;
  8.   -o-background-size: cover;
  9.   background-size: cover;
  10.   margin: 0;
  11.   min-height: 100vh;
  12.   display: flex;
  13.   justify-content: center;
  14.   align-items: center;
  15.   background-color:black;
  16. }
  17. .content {
  18.   display: flex;
  19.   align-items: center;
  20.   flex-direction: column;
  21. }
  22.  
  23. .div2{
  24.   font-weight: bold;
  25.   font-size: 30px;
  26.   color: #FAFAFA;
  27.   font-family: Indie Flower;
  28.   text-align:center;
  29.   text-shadow: 2px -4px 3px black;
  30.     }
  31.  
  32. .dust {
  33.   position: absolute;
  34.   width:50%;
  35.   opacity: 0.1;
  36.   filter: alpha(opacity=10);
  37. }
  38.  
  39. @media only screen and (min-width : 320px) and (max-width : 480px) {
  40. body{
  41.   background: url('https://img3.akspic.com/image/117156-darkness-female-black-fictional_character-girl-1920x1080.jpg') no-repeat center center fixed;
  42.   -webkit-background-size: cover;
  43.   -moz-background-size: cover;
  44.   -o-background-size: cover;
  45.   background-size: cover;
  46.   margin: 0;
  47.   min-height: 100vh;
  48.   display: flex;
  49.   justify-content: center;
  50.   align-items: center;
  51.   background-color:black;
  52. }
  53.   .div2{
  54.   font-weight: bold;
  55.   font-size: 17px;
  56.   color: #FAFAFA;
  57.   font-family: Indie Flower;
  58.   text-align:center;
  59.   text-shadow: 2px -2px 2px black;
  60.     }
  61.   .content {
  62.   display: flex;
  63.   align-items: center;
  64.   flex-direction: column;
  65.     }
  66.   .dust {
  67.   position: absolute;
  68.   width:100%;
  69.   opacity: 0.4;
  70.   filter: alpha(opacity=40);
  71. }
  72. }
  73. y{
  74.     color:yellow;
  75. }
  76. g{
  77.     color:green;
  78. }
  79. r{
  80.     color:red;
  81. }
  82. w{
  83.     color:white;
  84. }
  85. #rotate90 {
  86.     -webkit-transform: rotate(90deg);
  87.     -moz-transform: rotate(90deg);
  88.     -o-transform: rotate(90deg);
  89.     -ms-transform: rotate(90deg);
  90.     transform: rotate(90deg);
  91.     width : 100px;
  92.     height:120px;
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement