转载

高仿Windows 98主题的CSS样式库

windows_98.css 是一个简单的CSS脚本,它可以实现Windows 98主题风格的对话框和下拉菜单,与Windows 98主题的仿真度非常高。如果在现代的网页上出现Windows 98的风格,是不是回给人一种怀念的感觉。

演示地址: http://static.codeceo.com/demo/201507/windows-98-css/index.html

对话框

高仿Windows 98主题的CSS样式库

CSS代码:

  1. .win 98  .window { 
  2.    background #bfbfbf
  3.    border 1px   solid
  4.    border-top-color #dfdfdf
  5.    border-left-color #dfdfdf
  6.    border-right-color #808080
  7.    border-bottom-color #808080
  8.   box-shadow:  1px   1px   0 0   #000
  9.    width 400px
  10. .win 98  .window .content { 
  11.    padding 7px   10px
  12. .win 98  .window .header { 
  13.    margin 2px   2px   0
  14.    padding 1px   2px
  15.    color #fff
  16.    background : -webkit-linear-gradient( left #000080 #1084d0 ); 
  17.    background : linear-gradient(to  right #000080 #1084d0 ); 
  18.    font-weight bold
  19.    font-size 11px
  20.    line-height 16px
  21. .win 98  .window .header . icon  { 
  22.    width 16px
  23.    height 16px
  24.    float left
  25.    margin-right 2px
  26. .win 98  .window .header .buttons { 
  27.    height 14px
  28.    float right
  29. .win 98  .window .header .buttons button { 
  30.    vertical-align text-top
  31.    font-weight bold
  32.    line-height 12px
  33.    padding 0
  34.    height 14px
  35.    width 14px

下拉菜单

高仿Windows 98主题的CSS样式库

CSS代码:

  1. .win 98  .menu { 
  2.    background #bfbfbf
  3.    border 1px   solid
  4.    border-top-color #dfdfdf
  5.    border-left-color #dfdfdf
  6.    border-right-color #808080
  7.    border-bottom-color #808080
  8.   box-shadow:  1px   1px   0 0   #000
  9.   zoom:  1
  10.    width 195px
  11.    font-size 13px
  12.    padding 1px
  13.    position relative
  14. .win 98  .menu:before, 
  15. .win 98  .menu:after { 
  16.    content ""
  17.    display : table; 
  18. .win 98  .menu:after { 
  19.    clear both
  20. .win 98  .menu >.menu-content { 
  21.    float right
  22. .win 98  .menu .menu-sidebar { 
  23.    background : -webkit-linear-gradient( top #000080 #1084d0 ); 
  24.    background : linear-gradient(to  bottom #000080 #1084d0 ); 
  25.    position absolute
  26.    width 25px
  27.    height 100%
  28. .win 98  .menu .menu-sidebar .headline { 
  29.   -webkit-transform: rotate( 270 deg); 
  30.   -ms-transform: rotate( 270 deg); 
  31.   transform: rotate( 270 deg); 
  32.    position absolute
  33.   bottom:  40px
  34.   left:  -32px
  35.    width 100px
  36.    height 30px
  37.    font-size 16px
  38.    color #fff
  39. .win 98  .menu .menu-content { 
  40.    margin 0
  41.    padding 0
  42.    border 0
  43.    outline 0
  44.    color #000
  45.    list-style none
  46.    margin 2px   0
  47.    width 170px
  48. .win 98  .menu .menu-content .divider { 
  49.    margin 7px   6px
  50.    border-top 1px   solid   #808080
  51.    border-bottom 1px   solid   #dfdfdf
  52. .win 98  .menu .menu-content .item { 
  53.    cursor pointer
  54.    padding 10px
  55. .win 98  .menu .menu-content .item:hover { 
  56.    color #fff
  57.    background #000080
  58. .win 98  .menu .menu-content .item.folder { 
  59.    position relative
  60. .win 98  .menu .menu-content .item.folder:after { 
  61.    content '/25B6'
  62.    float right
  63.    font-size 10px
  64. .win 98  .menu .menu-content .item . icon  { 
  65.    float left
  66.    margin-right 7px
  67.    margin-top -4px
  68. .win 98  .menu .menu-content .item:hover .menu-content, 
  69. .win 98  .menu .menu-content .item:focus .menu-content { 
  70.    display block
  71. .win 98  .menu .menu-content .menu-content { 
  72.    background #bfbfbf
  73.    border 1px   solid
  74.    border-top-color #dfdfdf
  75.    border-left-color #dfdfdf
  76.    border-right-color #808080
  77.    border-bottom-color #808080
  78.   box-shadow:  1px   1px   0 0   #000
  79.    display none
  80.    position absolute
  81.   left:  165px
  82.   top:  -4px
  83. .win 98  .menu .menu-content .menu-content .item { 
  84.    padding 3px   10px
  85. .win 98  .menu .menu-content .menu-content . icon  { 
  86.    width 18px
  87.    height 18px
  88.    margin-top -2px

本文链接: http://www.codeceo.com/article/windows-98-css.htm

正文到此结束
Loading...