-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (85 loc) · 1.55 KB
/
style.css
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
* {
margin: 0;
overflow-x: hidden;
}
@media screen and (min-width: 800px) {
nav span {
display: inline;
}
}
@media screen and (max-width: 800px) {
nav span {
display: block;
}
}
#allcontent {
margin-top: 9.8%;
position: absolute;
left: 50%;
transform: translateX(-50%);
z-index: 1;
margin-bottom: 5%;
}
#img {
padding-top: 2.8%;
overflow-y: hidden;
}
#img img {
height: 29.6vh;
}
.center {
text-align: center;
height: auto;
}
#maintext {
font-family: 'Work Sans', sans-serif;
padding-top: 2.8%;
font-size: 300%;
}
#subtext {
font-family: 'Work Sans', sans-serif;
font-size: 1.3em;
line-height: 1.3em;
color: rgb(140,140,140);
padding-top: 3.8%;
}
a {
text-decoration: none;
color: #8c8c8c;
box-shadow: inset 0 -2px 0 0 #3cbae8;
display: inline-block;
transition: all .2s ease-in-out;
padding: 0px;
margin: 5px;
box-sizing: border-box;
}
a:hover {
border: none;
box-shadow: inset 0 -50px 0 0 #3cbae8;
color: #fffdd0;
}
h2 {
font-family: 'Work Sans', sans-serif;
color:#4f4f4f;
background-color: #4f4f4f;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
hr {
}
::selection {
background: #2ec57d;
}
.dark {
transition: all 0.3s;
color: white;
background-image: none !important;
background-color: #03001f;
text-shadow: none !important;
box-shadow: none;
}
div {
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}