-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_sheet.css
More file actions
63 lines (55 loc) · 914 Bytes
/
style_sheet.css
File metadata and controls
63 lines (55 loc) · 914 Bytes
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
body {
background-color: #000000;
text-align: center;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer */
user-select: none; /* Chrome */
}
h1 {
color: #00FF00;
font-family: "MeyrinRegular";
font-weight: normal;
font-style: normal;
font-size: 350%;
}
@font-face {
font-family: 'MeyrinRegular';
src:
local('Meyrin'),
local('MeyrinRegular'),
url('MeyrinRegular.ttf');
}
a {
color: #FF0000;
text-decoration: none;
padding: 20px;
letter-spacing: 3px;
outline: 0;
transition: all .2s ease-in;
}
a:hover {
font-style: italic;
letter-spacing: 10px;
}
.container {
display: table;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
}
.middle {
display: table-cell;
vertical-align: middle;
}
.content {
margin-left: auto;
margin-right: auto;
width: auto;
}
img {
height: 400px;
width: 200px;
}