forked from stemkoski/stemkoski.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
128 lines (114 loc) · 3.51 KB
/
index.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body
{
background-color: #eeeeee;
background-image: url("white-pixels.png");
background-repeat: repeat; /* repeat, no-repeat */
background-attachment: fixed; /* scroll, fixed */
background-position: top left; /* for no-repeat setting: top/bottom, left/right */
margin: 2% 5% 0% 5%; /* top, left, bottom, right or TRBL */
font-family: Georgia, Serif; /* list font names in order of preference */
font-weight: normal; /* normal, bold */
font-style: normal; /* normal, italic */
font-variant: normal; /* normal, small-caps */
font-size: 16px; /* font size */
color: #000000; /* hexadecimal RGB color code */
text-decoration: none; /* none, underline, overline, line-through */
text-align: left; /* left, right, center, justify */
}
.fancy
{
min-height: 150px;
/* next two lines for elder IE compatibility */
height: auto !important;
height: 150px;
/* Background color and gradients */
background: #eeeeee;
background: -moz-linear-gradient(top, #ffffff, #cccccc);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#cccccc));
/* really nifty translucence */
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.8), rgba(200, 200, 200, 0.8) );
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from( rgba(255, 255, 255, 0.8) ), to( rgba(200, 200, 200, 0.8) ));
/* Rounded corners */
-moz-border-radius: 15px 15px 15px 15px;
-webkit-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
}
/* Page text links */
a
{
font-size: 20px;
font-weight: bold;
font-variantx: small-caps;
color:#00c;
text-shadow: 1px 1px 0px #aaa;
margin: 13px 0px 0px 0px;
text-decoration: none;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.toc
{
font-size: 16px;
}
a:hover
{
color:#c00;
/*text-shadow: 1px 1px 0px #f00;
/* gradual change */
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.superText
{
color: #000;
text-shadow: 1px 1px 0px #aaa;
}
a .superImage
{
height: 148px;
border: 1px solid #000000;
margin: 0px 20px 0px 0px;
float:left;
/* Rounded corners */
-moz-border-radius: 15px 15px 15px 15px;
-webkit-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
position: relative;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
a:hover .superImage
{
top: -10px;
/* fallback on standard opaque colors */
-moz-box-shadow: 10px 10px 5px #888;
-webkit-box-shadow: 10px 10px 5px #888;
box-shadow: 10px 10px 5px #888;
/* translucent: the way shadows should be */
-moz-box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5);
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
-o-transition: all 300ms ease-in-out;
-ms-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}
.bigTitle
{
font-size: 32px;
font-weight: bold;
font-variantx: small-caps;
color:#004;
text-align: center;
text-shadow: -1px -1px 2px #fff, 1px 1px 3px #000;
}