Advertisement
Dreigon

CSS

Jul 31st, 2023
798
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | Source Code | 0 0
  1. @import url('https://fonts.googleapis.com/css?family={fontName}');
  2. * {
  3.     font-family: '{{fontName}}', sans-serif;
  4.     color:{{fontColor}};
  5.     font-weight:{{fontWeight}};
  6.     font-size:{{fontSize}}px;
  7. }
  8.  
  9. .weather {
  10.     margin-right: {{spacing}}px;
  11.     display: inline-block;
  12. }
  13.  
  14. #forecast {
  15.     width:{{iconSize}}px;
  16.     height:{{iconSize}}px;
  17.     vertical-align: middle;
  18. }
  19.  
  20. #forecastLbl {
  21.     margin-right: 0px; 
  22. }
  23.  
  24. .main-container {
  25.     position: absolute;
  26.     top: 50%;
  27.     transform: translateY(-50%);
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement