-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (108 loc) · 2.67 KB
/
style.css
File metadata and controls
127 lines (108 loc) · 2.67 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
body {
background: linear-gradient(0deg, rgba(225,225,225,1) 0%, rgba(213,213,213,1) 20%, rgba(203, 203,203,1) 36%, rgba(162,162,162,1) 52%, rgba(150,150,150,1) 68%, rgba(153,153,153,1) 84%, rgba(155,155,155,1) 100%);
background-repeat: no-repeat;
background-attachment: fixed;
}
h1, h2 {
font-family: Cambria, serif;
}
p {
font-family: Candara, Arial, sans-serif;
word-wrap: break-word;
}
a {
font-family: Cambria, serif;
}
/* started using opera gx and apparently the bold font messes up the entire title in opera gx */
.wordart {
font-family: Arial, sans-serif;
font-size: 4em;
position: relative;
z-index: 1;
display: inline-block;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
@keyframes wobble {
0%, 100% { transform: rotate(0.25deg) translateY(3px); }
50% { transform: rotate(-0.25deg) translateY(-3px);}
}
.wordart.blues .text {
font-family: Impact, sans-serif;
color: rgb(178, 178, 178);
-webkit-text-stroke: 0.01em rgb(131, 131, 131);
filter: progid:DXImageTransform.Microsoft.Glow(Color=rgb(131, 131, 131),Strength=1);
text-shadow: 0.13em -0.13em 0px rgb(131, 131, 131);
letter-spacing: -0.05em;
}
.wobble {
transform: rotate(0deg);
transform-origin: 293px 39px;
animation: wobble 1.5s infinite ease-in-out;
}
/* fun fact: .topnav was always meant to be in front of .sidebar so i fixed it */
.topnav {
/*background-color: #404040;*/
background-image: linear-gradient(to right, rgba(64, 64, 64, 1) 0%, rgba(64, 64, 64, 0) 75%);
/*overflow: hidden;*/ /* i have no idea what this line does so i commented out */
position: fixed;
width: 100%;
}
@media only screen and (min-width: 588px) {
.wrapper .sidebar{
background: #adadad;
position: fixed;
top: 0;
left: 0;
width: 325px;
height: 100%;
padding-top: 25px;
}
}
@media only screen and (max-width: 588px) {
.wrapper .sidebar{
background: #adadad;
position: fixed;
top: 0;
left: 0;
width: 325px;
height: 100%;
padding-top: 105px;
}
}
.main {
padding-top: 65px;
padding-left: 325px;
}
.links {
padding-left: 5.5%;
padding-right: 5.5%;
}
.links-padding {
padding-right: 1%;
padding-bottom: 1%;
padding-top: 1%;
}
.left {
width: 45%;
float: left;
}
.left-solo {
width: 75%;
float: left;
}
.right {
padding: 1.0%;
float: right;
}
.sr20det {
width: 100%;
height: 100%;
object-fit: contain;
padding-top: 2.5%;
}
.home-link {
font-family: Cambria;
text-decoration: none;
color: -moz-hyperlinktext;
}