Advertisement
Guest User

style.a5w

a guest
Oct 26th, 2014
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XBasic 1.49 KB | None | 0 0
  1. <style type="text/css">
  2. .hov:hover {
  3.     -webkit-box-shadow: 0px 2px 6px #333;
  4.     -moz-box-shadow: 0px 2px 6px #333;
  5.     box-shadow: 0px 0px 6px #333;
  6.     background-color: #FAF8F8;
  7.     color:#000000;
  8.     cursor:pointer;
  9. }
  10.  
  11. <%a5
  12. template=<<%html%
  13. .navbar li a:hover, .navbar li a.active{
  14.     color: {ds.data("color")}!important;
  15. }
  16. %html%
  17. delete cn
  18. dim cn as sql::Connection
  19.  
  20. dim flag as l
  21. cn.open("::Name::Connection")
  22.  
  23. cn.Execute("SELECT * FROM body where id_body=8 ")
  24.  
  25. rs = cn.ResultSet
  26. dim html as c
  27. html =a5_mergeDataIntoTemplate(template,rs)
  28. ?html
  29.  
  30. cn.FreeResult()
  31. cn.Close()
  32. %>
  33. .navbar-inverse .navbar-nav>
  34. .active>a,
  35. .navbar-inverse .navbar-nav>
  36. .active>a:hover,
  37. .navbar-inverse
  38. .navbar-nav>
  39. .active>a:focus{
  40.     color:#3276b1;
  41. }
  42.  
  43. .navbar li.nav-dropdown .caret{
  44.     border-top-color: #fff;
  45.     border-bottom-color: #fff;
  46. }
  47. <%a5
  48. template=<<%html%
  49.  
  50. .navbar li a{
  51.     font-family: '{ds.data("fontfamily")}';
  52.     font-size: {ds.data("fontsize")}px;
  53.     color: {ds.data("color")}!important;
  54.     -ms-transition: all 100ms ease-in-out 0s ;
  55.     -moz-transition: all 100ms ease-in-out 0s ;
  56.     -webkit-transition: all 100ms ease-in-out 0s ;
  57.     -o-transition: all 100ms ease-in-out 0s ;
  58.     transition: all 100ms ease-in-out 0s ;
  59. }
  60. %html%
  61. delete cn
  62. dim cn as sql::Connection
  63.  
  64. dim flag as l
  65. cn.open("::Name::Connection")
  66.  
  67. cn.Execute("SELECT * FROM body where id_body=7 ")
  68.  
  69. rs = cn.ResultSet
  70. dim html as c
  71. html =a5_mergeDataIntoTemplate(template,rs)
  72. ?html
  73.  
  74. cn.FreeResult()
  75. cn.Close()
  76. %>
  77. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement