-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
119 lines (100 loc) · 1.67 KB
/
home.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
@font-face {
font-family: "Titillum";
src: url("font/TitilliumWeb-Regular.ttf");
}
p {
color: #ffffff;
font-family: "Titillum";
font-size: 20px;
}
a {
color: #c7af6f;
transition: filter 50ms ease-out 50ms
}
a:hover{
filter: brightness(1.5);
}
a:active{
filter: brightness(2000);
}
a.home:hover{
filter: none;
}
body {
background-color: #1b0091;
background-image: url("img/background.gif");
background-repeat: no-repeat;
image-rendering: crisp-edges;
background-size: auto;
background-position: top;
}
.main {
background-color: #201541;
max-width: 960px;
margin: auto;
margin-top: 0px;
padding-bottom: 32px;
border-left: solid 4px #255dc3;
border-right: solid 4px #255dc3;
}
.bg_image {
background-image: url("img/trum.gif");
/* background-color: #ff0000; */
background-repeat: no-repeat;
image-rendering: crisp-edges;
background-size: auto;
background-position: bottom left;
}
.pad {
padding-right: 96px;
padding-left: 96px;
}
.pad_less {
padding-right: 16px;
padding-left: 16px;
}
img.stuff {
background-color: #3c3d5e;
display: block;
}
h1 {
color: #ffffff;
font-family: "Titillum";
font-size: 30px;
}
img {
max-width: 100%;
max-height: 100%;
}
.float_left {
padding-top: 0px;
padding-left: 8px;
padding-right: 8px;
display: inline-block;
margin-left: auto;
margin-right: auto;
}
.line {
display: block;
margin-left: auto;
margin-right: auto;
padding-top: 16px;
padding-bottom: 16px;
}
.big_img {
display: block;
margin-top: 16px;
margin-bottom: 16px;
margin-left: auto;
margin-right: auto;
width: 768px;
}
.center_img {
display: block;
margin-left: auto;
margin-right: auto;
}
.three_column {
float: left;
width: 33%;
}