-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
140 lines (120 loc) · 2.67 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
129
130
131
132
133
134
135
/*********************** Main *******************************************/
/* Contains ACME and TRUTH button in the middle*/
.mainContainer {
width: 100%;
text-align: center;
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-size: 25px;
}
/* Quotations */
.quotesContainer {
width: 100%;
text-align: center;
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 2;
font-size: 25px;
}
/* Upper Centered async timer */
.timer {
width: 100%;
text-align: center;
position: fixed;
top: 10%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 2;
}
/* links are now colored black instead of blue */
a {
color: black;
}
/* lower right link to restart from the beginning */
.moreTruth {
text-align: center;
position: fixed;
top: 90%;
left: 90%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 3;
}
/* fixes bug that disable underlining and cursor indication when hovering over links */
.moreTruth:hover, .profile:hover, .github:hover {
text-decoration: underline;
cursor: pointer;
cursor: hand;
}
/* allows for loading page to take up the entire screen */
body, html {
height: 100%;
font-size: 18px;
/* orange color background */
background-color: #FFC00C;
}
/* light-blue loading page (once fully loaded) */
.loading {
position: fixed;
z-index: 1;
height: 100%;
width: 100%;
}
/* github and profile links @ bottom center */
.extra {
width: 100%;
text-align: center;
position: fixed;
top: 90%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 2;
}
/************************ chrome, safari, and opera web browser *******************************/
/* diagonal loading screen */
@-webkit-keyframes expand {
0% {
-webkit-transform: translateY(100%) translateX(100%) rotate(110deg);
}
100% {
-webkit-transform: rotate(110deg) scale(1, 2.5);
background-color: #A2DED0;
}
}
/* allows fade-in animation for quotes */
@-webkit-keyframes fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/***************************** Firefox web browser ********************************************/
/* diagonal loading screen */
@-moz-keyframes expand {
0% {
-moz-transform: translateY(100%) translateX(100%) rotate(110deg);
}
100% {
-moz-transform: rotate(110deg) scale(1, 2.5);
background-color: #A2DED0;
}
}
/* fade-in animation for quotes */
@-moz-keyframes fade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}