Advertisement
coasterka

#4SoftUniKeyboardCSS

Jun 5th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 0 0
  1. table {
  2.     width: 400px;
  3.     height: 500px;
  4. }
  5.  
  6. table, th, td {
  7.     border: 1px solid black;
  8.     text-align: center;
  9. }
  10.  
  11. #small-table {
  12.     height: 100px; 
  13.     width: 100%;
  14.     border: none;
  15. }
  16.    
  17.     #small-table #social, #pastebin{
  18.         width: 100%;
  19.         font-size: 13px;
  20.         height: 45px;
  21.     }
  22.  
  23. .button {
  24.     background-color: #d6d6d6;
  25.     background-image: linear-gradient(0deg, rgba(237,237,237,0) 0%, rgba(237,237,237,0) 50%, rgba(237,237,237,0.7) 51%);
  26.     font-weight: bold;
  27.     font-family: Arial;
  28.     color: #0000ee;
  29.     text-shadow: 1px 1px 1px gray;
  30.     height: 100px;
  31.     width: 100%;
  32.     font-size: 1em;
  33. }
  34.  
  35. .button:hover {
  36.     background-color: gray;
  37. }
  38.  
  39. #softuni {
  40.     width: 100%;
  41.     font-size: 30px;   
  42. }
  43.  
  44. #google, #github{
  45.     width: 100%;
  46.     font-size: 20px;
  47. }
  48.  
  49. #party {
  50.     text-align: right;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement