Advertisement
neongm

Untitled

Mar 23rd, 2021
748
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.10 KB | None | 0 0
  1. body{
  2.     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  3.     background-color: #B4C5E4;
  4. }
  5.  
  6.  
  7. table.mytable{
  8.     text-decoration: none;
  9.     border-collapse:collapse;
  10.     width:100%;
  11.     text-align:left;
  12.     height: 500px;
  13. }
  14.  
  15. table.mytable th{
  16.     font-weight:normal;
  17.     font-size:26px;
  18.     color:#ffffff;
  19.     background-color:#49516F;
  20. }
  21.  
  22. table.mytable td{
  23.     font-size:17px;
  24.     color:#49516F;
  25.     background-color: #FBFFF1;
  26. }
  27.  
  28. table.mytable td, table.mytable th{
  29.     white-space:pre-wrap;
  30.     padding:13px 13px;
  31.     line-height:17px;
  32.     vertical-align: middle;
  33.     border: 2px solid #49516F;
  34. }
  35.  
  36. table.mytable tr:hover{
  37.     background-color:#ebebeb
  38. }
  39.  
  40. table.mytable tr:hover td{
  41.     color:#49516F;
  42.     cursor:default;
  43.     background: rgb(226, 226, 226);
  44. }
  45.  
  46.  
  47. p{
  48.     font-size: 14pt;
  49.     font-weight: 700;
  50. }
  51.  
  52. h1{
  53.     background-color: #49516F;
  54.     padding: 10px 0 20px 350px;
  55.     color: #FFF;
  56.     font-weight: 100;
  57.     font-size: 40px;
  58. }
  59. a{
  60.     color: #49516F;
  61.     font-size: 20px;
  62. }
  63. a:visited{
  64.     color: #5c6ba1;
  65. }
  66. a:hover{
  67.     color: orange;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement