Advertisement
Guest User

Untitled

a guest
May 6th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. <style type="text/css">
  2.  
  3. body {
  4. background-image: url("http://i.imgur.com/bxOD2m9.jpg");
  5. background-repeat: no-repeat;
  6. }
  7. .container {
  8. text-align: center;
  9. }
  10. .container ul {
  11. display: inline-block;
  12. margin: 10px 0;
  13. padding: 2px;
  14. }
  15.  
  16.  
  17. ul {
  18. list-style-type: none;
  19. margin: auto;
  20. width: 70%;
  21. padding: 0;
  22. overflow: hidden;
  23. background-color: #333;
  24. padding-left: 40px;
  25. }
  26.  
  27. li {
  28. float:left;
  29. position:relative;
  30. left:20%;
  31. border-right:1px solid #bbb;
  32.  
  33. }
  34.  
  35. li:last-child {
  36. border-right: none;
  37. }
  38.  
  39. li a {
  40. display: block;
  41. color: white;
  42. text-align: center;
  43. padding: 14px 16px;
  44. }
  45.  
  46. li a:hover:not(.active) {
  47. background-color: #007fff;
  48. }
  49.  
  50. .active {
  51. background-color: #007fff;
  52. }
  53. .btn-transparent {
  54. background: transparent;
  55. color: #F2F2F2;
  56. -webkit-transition: background .2s ease-in-out, border .2s ease-in-out;
  57. -moz-transition: background .2s ease-in-out, border .2s ease-in-out;
  58. -o-transition: background .2s ease-in-out, border .2s ease-in-out;
  59. transition: background .2s ease-in-out, border .2s ease-in-out;
  60.  
  61. }
  62. </style>
  63. </head>
  64. <body>
  65.  
  66. <form id="form1" runat="server">
  67.  
  68.  
  69. <div class="container">
  70.  
  71. <ul>
  72. <li><a><asp:Button BorderStyle="None" class="btn-transparent" ID="Button2" runat="server" Text="Availabilities" Width="95px" Height="25px" OnClick="Button2_Click" /></a></li>
  73. <li><a><asp:Button BorderStyle="None" class="btn-transparent" ID="Button3" runat="server" Text="Roster of the week" Width="135px" Height="25px"/></a></li>
  74. <li><a><asp:Button BorderStyle="None" class="btn-transparent" ID="Button7" runat="server" Text="Toxic List" Width="90px" Height="25px" /></a></li>
  75. <li><a><asp:Button BorderStyle="None" class="btn-transparent" ID="btnTeamInfo" runat="server" Text="Team Info" Width="110px" Height="25px" /></a></li>
  76. <li><a><asp:Button BorderStyle="None" class="btn-transparent" ID="Button6" runat="server" Text="Personal Info" Width="115px" Height="25px" BorderWidth="0px" /></a></li>
  77. <li><a><asp:Button BorderStyle="None" class="btn-transparent" ForeColor="#ff0000" ID="Button5" runat="server" Text="Admin Panel" Width="122px" Height="25px" Visible="False" /></a></li>
  78.  
  79. </ul>
  80.  
  81. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement