Skip to content

Commit e7067b4

Browse files
committed
fix back
1 parent dd0f023 commit e7067b4

File tree

173 files changed

+1565
-3887
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+1565
-3887
lines changed

.eslintignore

-3
This file was deleted.

.eslintrc

-14
This file was deleted.

.gitignore

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1 @@
1-
.DS_Store
2-
.idea/
3-
node_modules/
4-
*.log
5-
db.json
6-
public/
7-
.deploy*/
8-
package-lock.json
9-
/.vscode
1+
.vscode/

.npmrc

-1
This file was deleted.

.travis.yml

-18
This file was deleted.

CNAME

-1
This file was deleted.

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![Build Status](https://travis-ci.com/Qitas/SoC.svg?branch=master)](https://travis-ci.com/Qitas/SoC)
44

5-
基于hexo构建的网站,目前处于完善中...
65

76
[![sites](http://182.61.61.133/link/resources/head.png)](http://www.SoC.xin)
87

_config.yml

-25
This file was deleted.

css/3keys.css

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
/* Just setting CSS for the page */
2+
3+
* {
4+
margin: 0;
5+
padding: 0;
6+
}
7+
8+
body{
9+
background-color: #1b9b9b;
10+
}
11+
12+
html,
13+
css {
14+
width: 100%;
15+
height: 100%;
16+
}
17+
18+
.position {
19+
margin-left: auto;
20+
margin-right: auto;
21+
text-align: center;
22+
margin-top: 15%;
23+
}
24+
25+
#workarea {
26+
width: 100%;
27+
height: 100%;
28+
background-color: #1b9b9b;
29+
font-family: Raleway;
30+
}
31+
32+
#personal {
33+
color:white;
34+
text-decoration:none;
35+
position:absolute;
36+
bottom:15px;
37+
right:2%;
38+
}
39+
/* start code for the actual button: */
40+
41+
42+
/*
43+
Spot is the span on the inside of the href that
44+
fills the parent and makes the hover and link work
45+
for the entire div
46+
*/
47+
48+
.spot {
49+
position: absolute;
50+
width: 100%;
51+
height: 100%;
52+
top: 0;
53+
left: 0;
54+
}
55+
/*
56+
This is the outer svg wrapper that the SVG itself will
57+
fill. Multiple svg-wrapper classes can be put side by side.
58+
*/
59+
60+
.svg-wrapper {
61+
margin-top: 0;
62+
position: relative;
63+
width: 150px;
64+
/*make sure to use same height/width as in the html*/
65+
height: 40px;
66+
display: inline-block;
67+
border-radius: 3px;
68+
margin-left: 5px;
69+
margin-right: 5px
70+
}
71+
/*
72+
This is where we define the fill, color, thickness,
73+
and stroke pattern of the SVG when there is no hover.
74+
The dasharray and offset together define the line position
75+
under the words. Here's also where the transition speed is set.
76+
*/
77+
78+
#shape {
79+
stroke-width: 6px;
80+
fill: transparent;
81+
stroke: #009FFD;
82+
stroke-dasharray: 85 400;
83+
stroke-dashoffset: -220;
84+
transition: 1s all ease;
85+
}
86+
/*
87+
Pushing the text up into the SVG. Without this the
88+
text would be below the div's.
89+
*/
90+
91+
#text {
92+
margin-top: -35px;
93+
text-align: center;
94+
}
95+
96+
#text a {
97+
color: white;
98+
text-decoration: none;
99+
font-weight: 100;
100+
font-size: 1.1em;
101+
}
102+
/*
103+
Changing the shape on hover. I change the color of the stroke,
104+
make it thinner, then set it to again wrap around the entire parent element.
105+
*/
106+
107+
.svg-wrapper:hover #shape {
108+
stroke-dasharray: 50 0;
109+
stroke-width: 3px;
110+
stroke-dashoffset: 0;
111+
stroke: #06D6A0;
112+
}

css/clock.css

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
body{
2+
background: #666;
3+
}
4+
svg{
5+
display: block;
6+
margin: 0px auto;
7+
}

css/input_blink.css

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
input {
2+
border: 2px solid #5E6C77;
3+
font-size: 1.25em;
4+
padding: .25em .5em .3125em;
5+
color: #5E6C77;
6+
border-radius: .25em;
7+
background: transparent;
8+
-webkit-transition: all .100s;
9+
transition: all .100s;
10+
margin:20px ;
11+
}
12+
input:focus {
13+
outline: none;
14+
color: #A2ACB3;
15+
border-color: #A2ACB3;
16+
}
17+
input.keyup {
18+
color: white;
19+
border-color: white;
20+
text-shadow: 0 0 .125em white;
21+
box-shadow: 0 0 .25em white,inset 0 0 .25em white;
22+
}
23+
24+
body {
25+
-webkit-box-align: center;
26+
-webkit-align-items: center;
27+
-ms-flex-align: center;
28+
align-items: center;
29+
-webkit-box-pack: center;
30+
-webkit-justify-content: center;
31+
-ms-flex-pack: center;
32+
justify-content: center;
33+
}
34+
35+
canvas {
36+
position: absolute;
37+
left: 0;
38+
right: 0;
39+
top: 0;
40+
bottom: 0;
41+
pointer-events: none;
42+
}
43+
44+
input {
45+
font-family: "Arial Rounded MT Bold","Helvetica Rounded",Arial,sans-serif;
46+
}
47+
48+
::-webkit-input-placeholder {
49+
color: #5E6C77;
50+
text-shadow: 0 0 .125em transparent;
51+
-webkit-transition: all .25s;
52+
transition: all .25s;
53+
}
54+
55+
input:focus::-webkit-input-placeholder {
56+
opacity: .5;
57+
}
58+
59+
::-moz-placeholder {
60+
color: #5E6C77;
61+
text-shadow: 0 0 .125em transparent;
62+
-webkit-transition: all .25s;
63+
transition: all .25s;
64+
}
65+
66+
input:focus::-moz-placeholder {
67+
opacity: .5;
68+
}
69+
70+
:-ms-input-placeholder {
71+
color: #5E6C77;
72+
text-shadow: 0 0 .125em transparent;
73+
-webkit-transition: all .25s;
74+
transition: all .25s;
75+
}
76+
77+
input:focus:-ms-input-placeholder {
78+
opacity: .5;
79+
}
80+
81+
html, body {
82+
height: 100%;
83+
overflow: hidden;
84+
}
85+
86+
html {
87+
background: #282E33;
88+
}

css/normalize.css

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/style.css

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
body {
2+
background: #252527;
3+
}
4+
.owText {
5+
text-align: center;
6+
-webkit-text-stroke: 1px white;
7+
position: relative;
8+
top:100px;
9+
margin-top: 20px;
10+
text-transform: none;
11+
color: #252527;
12+
font-size: 2vw;
13+
letter-spacing: 0.2vw;
14+
font-weight: 100;
15+
text-shadow:
16+
-1px -1px 0 #4a4a4e,
17+
-1px -1px 0 #4a4a4e,
18+
/*main 3d shadow*/
19+
-1px 0px 0 #343437,
20+
-2px 1px 0 #343437,
21+
-3px 2px 0 #313134,
22+
-4px 3px 0 #2f2f31,
23+
-5px 4px 0 #2c2c2f,
24+
-6px 5px 0 #2a2a2c,
25+
-7px 6px 0 #27272a,
26+
-8px 7px 0 #252527,
27+
-9px 8px 0 #232324,
28+
-10px 9px 0 #202022,
29+
-11px 10px 0 #1e1e1f,
30+
-12px 11px 0 #1b1b1d,
31+
-13px 12px 0 #19191a,
32+
-14px 13px 0 #161617,
33+
-15px 14px 0 #141415,
34+
-16px 15px 0 #111112,
35+
/*top right*/
36+
0 -1px 1px #ffffff,
37+
0 -2px 0px #ffffff,
38+
/*bottom left corner*/
39+
-5px 4px 0px #ffffff,
40+
-6px 5px 0px #ffffff,
41+
-1px 1px 0px #ffffff,
42+
-8px 7px 0px #ffffff,
43+
-2px -1px 0 #ffffff,
44+
-3px 0px 0 #ffffff,
45+
/*top left corner*/
46+
-9px 5px 0 #ffffff,
47+
-8px 4px 0 #ffffff,
48+
-7px 3px 0 #ffffff,
49+
-6px 2px 0 #ffffff,
50+
-5px 1px 0 #ffffff,
51+
-4px 10px 0 #ffffff,
52+
-3px 9px 0 #ffffff,
53+
-2px 8px 0 #ffffff,
54+
-1px 7px 0 #ffffff,
55+
-1px 6px 0 #ffffff,
56+
-9px 5px 0 #ffffff,
57+
-8px 4px 0 #ffffff,
58+
-7px 3px 0 #ffffff,
59+
-6px 2px 0 #ffffff,
60+
-5px 1px 0 #ffffff,
61+
-4px 0px 0 #ffffff,
62+
/*lower right / (upper right side for capital T like H etc letters. */
63+
-1px 2px 0px #ffffff,
64+
-1px 2px 0px #ffffff,
65+
-1px 3px 0px #ffffff,
66+
-1px 3px 0px #ffffff,
67+
-1px 3px 0px #ffffff,
68+
-1px 2px 0px #ffffff,
69+
-1px 3px 0px #ffffff,
70+
-1px 3px 0px #ffffff,
71+
-1px 3px 0px #ffffff,
72+
-1px 2px 0px #ffffff,
73+
-1px 2px 0px #ffffff,
74+
-1px 3px 0px #ffffff,
75+
-1px 3px 0px #ffffff,
76+
-1px 2px 0px #ffffff,
77+
-1px 2px 0px #ffffff,
78+
-1px 2px 0px #ffffff;
79+
}

0 commit comments

Comments
 (0)