Advertisement
Guest User

dark_spacehey

a guest
Dec 3rd, 2020
1,644
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.66 KB | None | 0 0
  1. /* 1- Most of the color are defined here */
  2. :root{
  3. /* [background color]: header on top */
  4.   --logo-blue: #34568B!important;
  5.  
  6. /* [font color]: 'contacting' links, footer links, 'add comments' links, 'view blog' links*/
  7.   --darker-blue: Cornsilk!important;
  8.  
  9. /* [background color]: table headers, main top menu, border color*/
  10.   --lighter-blue: Black!important;  
  11.  
  12.  
  13. /* [background color]: 'interests' table (left column) */
  14. /* [background color]: 'interests' table (right column) */
  15.   --even-lighter-blue: LightSlateGrey!important;
  16.   --lightest-blue: SlateGrey !important;
  17.  
  18.  
  19. /* [font color]: 'blurbs' , 'friend space', 'friends comments' */
  20. /* [background color]: 'blurbs' , 'friend space', 'friends comments' */
  21.   --dark-orange: #FA7A35 !important;
  22.   --light-orange: Black !important;
  23.  
  24. /* [background color]: 'friend comments' right column */
  25.   --even-lighter-orange: LightSlateGrey!important;
  26.  
  27. }
  28.  
  29. /*20- [background color]:  the main entire page*/
  30. body{
  31.   background-color: #282D3C !important;
  32.   /*background: url("./back.jpg");*/
  33. }
  34.  
  35. /*24- width of the page */
  36. .container{    
  37.   margin-top:10px!important;  /* added */
  38.   width: 950px;
  39.   border: 2px solid white;
  40. }
  41.  
  42. /*32- [font color]: footer links, override almost all links*/
  43. a{
  44.   color: Yellow !important;
  45.   font-weight: 600 !important;
  46.  
  47.  
  48. }
  49.  
  50. /*108- font scale*/
  51. /*     font weight [added by me] */
  52. nav .links a{    
  53.   font-size: 1em;
  54.   font-weight: 600; /* added */
  55. }
  56.  
  57. /*117- [background color]: the main white area */
  58. /*    [font color]: most of the fonts in the main area*/
  59. /*    top and bottom space */
  60. /*    font scale */
  61. main{    
  62.   background: rgba(54, 57, 69, 1);
  63.   color: white!important;
  64.   padding: 20px 20px!important;
  65.   margin-top: 5px!important; /* added */
  66.   font-size: 90%!important;  
  67.   }
  68.  
  69. /*127- [background color]: footer area*/
  70. /*     [Font color]: text footer area  [added by me]*/
  71. /*     remove the margin top and bottom [added by me]*/
  72. footer{  
  73.   background: #6B5876 !important;
  74.   color: SeaShell !important; /* * */
  75.   margin: 0px !important; /* * */
  76. }
  77.  
  78. /*415- [font color]: 'interests' left column text */
  79. .details-table td:first-child{  
  80.   color: AliceBlue!important;
  81. }
  82.  
  83. /*471- [font color]: the link-text up to the friend photo  */
  84. .profile .friends .person p{
  85.   color: SpringGreen!important;
  86. }
  87.  
  88. /*485- [font color]: text of 'comments' counter */
  89. .count{
  90.   color: Aqua!important;
  91. }
  92.  
  93. /*496- [background color]: 'friend comments' left column */
  94. .comments-table td:first-child,
  95. .music-table td:first-child{
  96.   background: SlateGrey;
  97. }
  98.  
  99.  
  100. /*819- [font color of the 'Online' text next to the user photo]: */
  101. .online{
  102.   color: PaleGreen!important;  
  103. }
  104.  
  105.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement