-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnightsky.css
More file actions
163 lines (121 loc) · 2.63 KB
/
Copy pathnightsky.css
File metadata and controls
163 lines (121 loc) · 2.63 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
*{
font-family: "MS Pゴシック";
font-smoothing: never;
-webkit-font-smoothing: never;
}
/* aliasing code */
*{
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: pixelated;
image-rendering: optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;
}
body{
background:
linear-gradient(to bottom,
rgb(0,0,0) 0%,
rgb(63,63,63) 50%,
rgb(0,0,0) 100%);
background-attachment: fixed;
}
div#header, div#hSub{
text-align: center;
border: 0px none !important;
box-shadow: 0px 0px 5px #000a;
}
div#header{
background:
linear-gradient(to bottom,
rgb(0,68,204) 0%,
rgb(0,51,153) 100%);
z-index: 310;
color: black;
}
div#hSub{
background:
linear-gradient(180deg,
rgb(109,176,242),
rgb(102,153,204));
border-radius: 0% 0% 15px 15px;
box-shadow: 0px 0px 15px #fff;
margin-top: -1px;
}
/* win2k header*/
.rightHead, .boxHead, .blogs.b{
background-image:
url(https://files.catbox.moe/j8a4a7.png),
linear-gradient(to right,
#072269,
#a5c7ea);
background-repeat: no-repeat;
background-position: top right;
background-size: auto 100%;
padding: 1px;
padding-left: 4px;
color: white;
}
/* border */
.box{
border: 5px solid transparent;
border-image: url(https://files.catbox.moe/520q98.png) 5 stretch;
background: #d2cec6;
box-shadow: 0px 0px 15px #fffc;
color: black;
}
h4{color: black;}
.topLeft{color: white;}
.extended, .url, .player, #footer, .blogTitle > .uName{
border: transparent;
background: none;
box-shadow: 0 0 0;
color: white;
}
.url{font-size: 0px; border: 0px;}
.tableLeft{background-color: #36f;}
.tableRight{background-color: #9bf;}
button, input{ /* button */
background: #eee;
border: 2px outset #eee;
border-radius: 0px;
margin: 2px;
}
button:hover, input:hover{ /* button hover */
background: #ddd;
border-color: #ddd;
}
button:active, input:active{ /* button click */
background: #eee;
border: 2px inset #eee;
}
.comments{
border-top: transparent;
margin-top: -5px;
margin-bottom: 20px;
}
.player{width: auto;}
div.box.fwiends{
overflow: hidden;
border-bottom: transparent;
margin-bottom: 0px;
}
.fwiendFace {
border: 3px outset #d2cec6;
background-color: #d2cec6;
margin: 2px;
padding: 1vw;
box-shadow: 0px 0px 0px #000;
z-index: 150;
transition: all 0.25s;
}
.fwiendFace:hover {
box-shadow: 0px 0px 15px #000;
border-radius: 15px;
z-index: 175;
transform: scale(1.25);
}
.fwiendFace:active {
border: 3px inset #bcb6a9;
}