-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·202 lines (165 loc) · 3.16 KB
/
style.css
File metadata and controls
executable file
·202 lines (165 loc) · 3.16 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
.button {
background-image: url("./image/bg.jpg");
border: 2px solid lightskyblue;
padding: 5px 25px;
color: white;
text-align: center;
text-decoration: none;
text-shadow: 0 -1px 0 white;
font-size: 40px;
cursor: pointer;
box-shadow: 0 1px 0 white;
}
#top, #bottom{
position: relative;
left: 0;
right: 0;
height: 100%;
width: 100%;
}
#top {
left: 0;
right: 0;
background-color: rgb(252, 251, 242);
text-align: center;
font-size: 50px;
}
#first{
animation: fadein 3s;
-moz-animation: fadein 3s; /* Firefox */
-webkit-animation: fadein 3s; /* Safari and Chrome */
-o-animation: fadein 3s; /* Opera */
}
#second{
animation: fadein 4s;
-moz-animation: fadein 4s; /* Firefox */
-webkit-animation: fadein 4s; /* Safari and Chrome */
-o-animation: fadein 4s; /* Opera */
}
#third{
animation: fadein 6s;
-moz-animation: fadein 6s; /* Firefox */
-webkit-animation: fadein 6s; /* Safari and Chrome */
-o-animation: fadein 6s; /* Opera */
}
@keyframes fadein {
from {
opacity:0;
}
to {
opacity:1;
}
}
@-moz-keyframes fadein { /* Firefox */
from {
opacity:0;
}
to {
opacity:1;
}
}
@-webkit-keyframes fadein { /* Safari and Chrome */
from {
opacity:0;
}
to {
opacity:1;
}
}
@-o-keyframes fadein { /* Opera */
from {
opacity:0;
}
to {
opacity: 1;
}
}
#bottom {
bottom: 0;
background-color: rgb(252, 251, 242);
}
h2 {
font-style: italic;
}
.header{
font-size: 40px;
color:white;
text-align: center;
font-weight: bolder;
padding-bottom: 20px;
padding-top: 20px;
background-image: url("./image/bg.jpg");
}
.discussion{
font-size: 30px;
text-align: center;
font-weight: bolder;
position: absolute;
text-decoration: underline;
}
#ResumeButt{
color: white;
width: 450px;
position: absolute;
font-size: 20px;
margin-bottom: 10px;
background: rgb(186, 255, 68);
box-shadow: 0 1px 0 white;
}
.question{
font-size: 23px;
}
.contents{
font-size: 25px;
}
.title{
font-size: 25px;
}
body{
background-color: rgb(252, 251, 242);
font-size: 25px;
font-family: "Trebuchet MS";
}
table, th, td {
text-align: center;
border-color: greenyellow;
}
a {
color: cornflowerblue;
}
.grow:hover {
-webkit-transform: scale(1.3);
background: rgb(255, 246, 155);
}
.chart{
position: fixed;
padding-left: 3%;
float: left;
width: 35vh;
}
.chart2{
position: relative;
background-repeat: no-repeat;
}
.logo{
width: 20%;
float: left;
margin-top: -420px;
}
.text{
float: right;
padding-right: 7vw;
position:absolute;
margin-left: 25vw;
}
.center{
margin-left:auto;
margin-right:auto;
}
.copyright{
font-size: 11px;
color: cornflowerblue;
bottom: 2px;
float: left;
position: fixed;
}