-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (100 loc) · 1.45 KB
/
style.css
File metadata and controls
109 lines (100 loc) · 1.45 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
/* style.css by Quentin J. Upshaw*/
/*
fonts
*/
/**/
html
{
background-color: #191716;
color: #84596B;
border: #191716;
text-shadow: 0 0 3px #7b7b7b;
min-width: 463px;
zoom: 1.5;
font-family: 'Advent Pro', sans-serif;
}
body
{
margin: auto;
width: 463px;
}
p
{
border: 1px solid black;
font-size: larger;
margin: 20px;
padding: 10px;
border-radius: 5px;
background-color: #440D0F;
}
#bottomp
{
margin-bottom: 50px;
}
h1
{
font-family: 'Oswald', sans-serif;
text-align: center;
border: 2px solid black;
margin: 20px;
padding: 2px;
border-radius: 30px;
background-color: #603A40;
color: #AF9BB6;
}
/*
tables
*/
.onhover
{
transition: 250ms;
-webkit-transition: 250ms;
-moz-transition: 250ms;
-ms-transition: 250ms;
-o-transition: 250ms;
}
.onhover:hover
{
transform: scale(1.2);
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
}
table, th, td {
background-color: #440D0F;
border: 1px solid #603A40;
padding: 10px;
border-radius: 3px;
}
table{margin-top: 50px;}
/*
links
*/
a
{
transition: 250ms;
-webkit-transition: 250ms;
-moz-transition: 250ms;
-ms-transition: 250ms;
-o-transition: 250ms;
}
a:link {
color: #0aa;
}
a:visited {
color: #58f;
}
a:hover
{
text-shadow: 0 0 5px #5ff;
}
a:visited:hover {
text-shadow: 0 0 5px #0af;
}
a:active {
color: blue;
}
/*
Special stuff
*/