搜索
查看
编辑修改
首页
UNITY
NODEJS
PYTHON
AI
GIT
PHP
GO
CEF3
JAVA
HTML
CSS
搜索
2023面试高手
这个屌丝很懒,什么也没留下!
关注作者
热门标签
jquery
HTML
CSS
PHP
ASP
PYTHON
GO
AI
C
C++
C#
PHOTOSHOP
UNITY
iOS
android
vue
xml
爬虫
SEO
LINUX
WINDOWS
JAVA
MFC
CEF3
CAD
NODEJS
GIT
Pyppeteer
article
热门文章
1
项目质量管理学习笔记_项目lesson learn
2
Docker安装openjdk-11,并查看对应的版本_windows docker pull openjdk-11-jre
3
使用第二块显卡——CUDA——os.environ_限制使用第2块显卡 cuda
4
《Python 简易速速上手小册》第2章:Python 基础语法和概念(基于最新版 Python3.12 编写)
5
python云南昆明旅游景点数据可视化大屏全屏系统设计与实现(django框架)_利用django铺盖整个屏幕
6
Golang并发模型:合理退出并发协程
7
【高效开发工具系列】Intellj IDEA 2023.3 版本_idea 2023.3.3
8
Git Commit 提交规范
9
【华为OD统一考试B卷 | 200分】篮球比赛(C++ Java JavaScript Python)_od 篮球比赛
10
C#毕业设计——基于C#+asp.net+SQL server的教学网站及网上考试系统设计与实现(毕业论文+程序源码)——教学网站及网上考试系统
当前位置:
article
> 正文
高仿Windows 98主题的CSS样式库
作者:2023面试高手 | 2024-02-15 13:23:06
赞
踩
主题库98版本
对话框
CSS代码:
.win
98
.window {
background
:
#bfbfbf
;
border
:
1px
solid
;
border-top-color
:
#dfdfdf
;
border-left-color
:
#dfdfdf
;
border-right-color
:
#808080
;
border-bottom-color
:
#808080
;
box-shadow:
1px
1px
0 0
#000
;
width
:
400px
;
}
.win
98
.window .content {
padding
:
7px
10px
;
}
.win
98
.window .header {
margin
:
2px
2px
0
;
padding
:
1px
2px
;
color
:
#fff
;
background
: -webkit-linear-gradient(
left
,
#000080
,
#1084d0
);
background
: linear-gradient(to
right
,
#000080
,
#1084d0
);
font-weight
:
bold
;
font-size
:
11px
;
line-height
:
16px
;
}
.win
98
.window .header .
icon
{
width
:
16px
;
height
:
16px
;
float
:
left
;
margin-right
:
2px
;
}
.win
98
.window .header .buttons {
height
:
14px
;
float
:
right
;
}
.win
98
.window .header .buttons button {
vertical-align
:
text-top
;
font-weight
:
bold
;
line-height
:
12px
;
padding
:
0
;
height
:
14px
;
width
:
14px
;
}
下拉菜单
CSS代码:
.win
98
.menu {
background
:
#bfbfbf
;
border
:
1px
solid
;
border-top-color
:
#dfdfdf
;
border-left-color
:
#dfdfdf
;
border-right-color
:
#808080
;
border-bottom-color
:
#808080
;
box-shadow:
1px
1px
0 0
#000
;
zoom:
1
;
width
:
195px
;
font-size
:
13px
;
padding
:
1px
;
position
:
relative
;
}
.win
98
.menu:before,
.win
98
.menu:after {
content
:
""
;
display
: table;
}
.win
98
.menu:after {
clear
:
both
;
}
.win
98
.menu >.menu-content {
float
:
right
;
}
.win
98
.menu .menu-sidebar {
background
: -webkit-linear-gradient(
top
,
#000080
,
#1084d0
);
background
: linear-gradient(to
bottom
,
#000080
,
#1084d0
);
position
:
absolute
;
width
:
25px
;
height
:
100%
;
}
.win
98
.menu .menu-sidebar .headline {
-webkit-transform: rotate(
270
deg);
-ms-transform: rotate(
270
deg);
transform: rotate(
270
deg);
position
:
absolute
;
bottom:
40px
;
left:
-32px
;
width
:
100px
;
height
:
30px
;
font-size
:
16px
;
color
:
#fff
;
}
.win
98
.menu .menu-content {
margin
:
0
;
padding
:
0
;
border
:
0
;
outline
:
0
;
color
:
#000
;
list-style
:
none
;
margin
:
2px
0
;
width
:
170px
;
}
.win
98
.menu .menu-content .divider {
margin
:
7px
6px
;
border-top
:
1px
solid
#808080
;
border-bottom
:
1px
solid
#dfdfdf
;
}
.win
98
.menu .menu-content .item {
cursor
:
pointer
;
padding
:
10px
;
}
.win
98
.menu .menu-content .item:hover {
color
:
#fff
;
background
:
#000080
;
}
.win
98
.menu .menu-content .item.folder {
position
:
relative
;
}
.win
98
.menu .menu-content .item.folder:after {
content
:
'\25B6'
;
float
:
right
;
font-size
:
10px
;
}
.win
98
.menu .menu-content .item .
icon
{
float
:
left
;
margin-right
:
7px
;
margin-top
:
-4px
;
}
.win
98
.menu .menu-content .item:hover .menu-content,
.win
98
.menu .menu-content .item:focus .menu-content {
display
:
block
;
}
.win
98
.menu .menu-content .menu-content {
background
:
#bfbfbf
;
border
:
1px
solid
;
border-top-color
:
#dfdfdf
;
border-left-color
:
#dfdfdf
;
border-right-color
:
#808080
;
border-bottom-color
:
#808080
;
box-shadow:
1px
1px
0 0
#000
;
display
:
none
;
position
:
absolute
;
left:
165px
;
top:
-4px
;
}
.win
98
.menu .menu-content .menu-content .item {
padding
:
3px
10px
;
}
.win
98
.menu .menu-content .menu-content .
icon
{
width
:
18px
;
height
:
18px
;
margin-top
:
-2px
;
}
作者:小峰
来源:51CTO
声明:
本文内容由网友自发贡献,转载请注明出处:
【wpsshop博客】
推荐阅读
article
在
Mac
系统上运行
Windows
应用工具
CrossOver
23.6
Mac
中文破解版_mac w...
CrossOver
23.6
Mac
中文破解版是一款支持在
Mac
系统上运行
Windows
应用程序的类虚拟机软件,实现跨...
赞
踩
article
使用
CrossOver
在
Linux
运行
Windows
软件
(金测OK)...
使用
CrossOver
在
Linux
运行
Windows
软件
即便是最忠实的
Linux
用户,有时候也需要
运行
一...
赞
踩
article
CrossOver
for
Mac
23.7
.1无需安装
Windows
即可以在
Mac
上运行游...
CrossOver
23.7
.1 让
Mac
可以运行
Windows
程序的工具 已通过小编安装运行测试 100%可以使用。C...
赞
踩
article
Macbook
电脑
风扇
温控
Macs
Fan
Control
Pro_
苹果电脑
温控软件
windows
...
设置自定义RPM值(每分钟转数)或相对于温度传感器(例如,第三方HDD)控制
风扇
速度。也可以在通过Boot Camp安装...
赞
踩
article
Screen
命令使用指南_
screen
windows
...
如果你问我什么命令最能提高工作过程中的幸福感,就目前的情况来看,我一定会毫不犹豫地回答:“
screen
!没错就是scre...
赞
踩
article
【VsCode
远程
开发】
Windows
SSH
远程
连接Linux
服务器
- 无公网IP内网穿透_vs...
远程
连接
服务器
工具有很多,比如XShell、putty等,可以通过
ssh
来
远程
连接
服务器
,但这用于写代码并不方便,可能需...
赞
踩
article
PyCharm
下载
、
安装
及相关配置(
Windows
11
)详细教程...
本文介绍在
Windows
11
系统
PyCharm
的
下载
、
安装
及其相关配置_pycharm
下载
pycharm
下载
...
赞
踩
article
Python
下载、
安装
及如何配置
Pycharm
(
Windows
11)详细教程_
windows11
能...
本文介绍在
Windows
11系统
Python
的下载、
安装
及配置
Pycharm
_
windows11
能
安装
pycharm
麻...
赞
踩
article
windows
2012安装
python2
_
windows
server
2012服务器安装 pyt...
首先
python2
和python3版本是不兼容的,所有不能同时安装,本次因为做实验需要
python2
的环境1.下载安装包...
赞
踩
article
win
dows
/mac修改
host
s文件_
win
mac 修改
host
...
1,
win
dows
修改
host
s文件1)
win
+R,输入C:\Windows\System32\Drivers\etc打...
赞
踩
article
C#
error
MSB3171
: 生成清单
时
出现问题。未能加载文件或程序集,
Windows
.win...
用VS2017编译一个第三方演示DEMO程序
时
报这个错误。1>------ 已启动全部重新生成: 项目: UHFDemo...
赞
踩
article
Windows
Gogs
搭建Git代码服务器_
error
setting
startup
param...
1、下载git
for
window2、下载NSSM3、下载Gog4、安装git
for
windows:5、安装NSS...
赞
踩
article
windows
下安装
python
_
python
.
org
/
downloads
/
windows
/...
文章转载自:在 Windows 上安装 Python 和安装普通软件一样简单,下载安装包以后猛击“下一步”即可。Pyth...
赞
踩
article
python
环境的
安装
(
Windows
)_
windows
安装
python
环境...
步骤一
安装
:打开
python
官网https://www.
python
.org/点击Downloads,选择
Windows
...
赞
踩
article
优秀开源项目
C++
高性能服务器引擎
sogou
/
workflow
学习笔记
1
-
环境
配置篇_搜狗workf...
created: 2020-
1
1
-05
1
1
:39:27大学期间,我一直专攻
C++
,第一份工作也如愿找到了
windows
...
赞
踩
article
总结
Python
下载
安装
方法与踩过的坑(
Windows
)_
python
debugging
symb...
Python
的下载、
安装
与卸载_
python
debugging
symbols
需要
安装
吗
python
debuggin...
赞
踩
article
python
安装
配置教程
win
10
_
Python
环境
安装
教程(
Windows
10
)...
Python
编程语言非常强大,非常容易上手,版本更新也不慢,在
win
10
x64中兼容性也很好,直接
安装
不需另外配置,虽...
赞
踩
article
【
Python
】
Windows
:
Python
3.9
.2
下载
和
安装
_python
3.9
下载
...
Python
软件基础教程:
Python
下载
与
安装
指南(
下载
、
安装
、配置、验证)_python
3.9
下载
python
3.9
...
赞
踩
article
Python
环境安装教程_
download
windows
embeddable
package
...
【
Python
】安装详细教程,小白也能看懂!_
download
windows
embeddable
package
do...
赞
踩
article
微软
Windows
Server
版本
对比:了解
不同
版本
之间
的
差异
_windowsserver20...
提供
版本
设计为许可证类型备注网页版零售用于构建和托管 Web 应用程序,网页和 XML Web 服务。基础版单设备(预安...
赞
踩
相关标签
macos
windows
CrossOver
操作系统
运维
CrossOver 23
screen
unix
服务器
vscode
pycharm
python
linux
c#
visual studio
c++
框架