-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (69 loc) · 1.32 KB
/
style.css
File metadata and controls
80 lines (69 loc) · 1.32 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
@font-face {
font-family: twCenMt;
src: url(resources/TCM_____.TTF);
}
body {
background: url(resources/Midnight.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.textBox {
width: 500px;
background: rgba(0, 0, 0, 0.5);
padding: 15px;
margin: 20px;
text-align: center;
margin: auto;
color: white;
font-family: twCenMt;
}
.textBox h1 {
font-size: 30px;
text-shadow: 0px 0px 3px #f8f8f8;
}
.textBox h5 {
font-size: 15px;
text-shadow: 0px 0px 3px #f8f8f8;
}
.wrapper {
margin: 0px auto;
text-align: center;
position: relative;
top: 2em;
}
.logo {
display: inline-block;
width: 250px;
height: 250px;
transition: transform 0.2s ease-in-out;
}
.logo img {
display: inline-block;
border-radius: 50%;
width: 100%;
}
.logo:hover,
.logo:active {
transform: scale(110%);
}
.linkIcon {
margin-top: 20px;
margin-left: 10px;
margin-right: 10px;
width: 150px;
height: 150px;
display: inline-block;
transition: transform 0.2s ease-in-out;
}
.linkIcon img {
filter: drop-shadow(5px 5px 12px rgba(255,255,255,0.400));
display: inline-block;
width: 100%;
}
.linkIcon:hover,
.linkIcon:active {
filter: drop-shadow(5px 5px 12px rgba(255,255,255,0.800));
transform: scale(115%);
}