-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (76 loc) · 1.53 KB
/
Copy pathstyle.css
File metadata and controls
90 lines (76 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
该样式表是基于Foxden (https://alexasfoxden.neocities.org/) 的修改。
2025 ChakerAt.
Copyright (c) 2025 Alex's GlowCity Studio. All Rights Reserved.
*/
body {
background-color: #008080;
font-family: "Microsoft Sans Serif", "Arial", "Noto Emoji", sans-serif;
margin: 0;
padding: 0;
color: #000000;
display: flex;
align-items: center;
min-height: 100vh;
user-select: none;
}
.container {
width: 800px;
margin: 20px auto;
border: 2px outset #C0C0C0;
background-color: #C0C0C0;
padding: 5px;
}
.header {
background: linear-gradient(0.25turn, #000080, 50%, #1084D0);
color: #FFFFFF;
font-weight: bold;
padding: 3px 5px;
border-bottom: 1px solid #000000;
}
.content {
background-color: #FFFFFF;
padding: 10px;
border: 2px inset #C0C0C0;
margin-top: 5px;
}
.nav {
background-color: #C0C0C0;
padding: 3px;
margin-top: 3px;
}
.nav a {
text-decoration: none;
color: #000000;
padding: 3px 8px;
border: 1px solid #C0C0C0;
border-bottom: none;
background-color: #C0C0C0;
}
.nav a:hover {
border: 1px outset #FFFFFF;
background-color: #DFDFDF;
}
.nav a.active {
border: 1px inset #808080;
background-color: #FFFFFF;
}
a:link,
a:visited {
color: black;
text-decoration: none;
}
.gallery-item {
text-align: center;
margin-bottom: 20px;
}
.gallery-item img {
width: 200px;
border: 4px inset #C0C0C0;
padding: 3px;
background-color: #FFFFFF;
}
img,
a {
-webkit-user-drag: none;
}