-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (70 loc) · 1.13 KB
/
style.css
File metadata and controls
82 lines (70 loc) · 1.13 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
#menu
{
position: fixed;
width: 100%;
height: 50px;
background: transparent;
}
h1{
font-family: courier;
text-shadow: 5px black;
font-weight: border-bottom;
}
h2 {
text-shadow: 5px 2px black;
font-family: ariel;
}
p{
font-family: courier;
}
p.number{
font-family: courier;
font-size: 140%;
color: red;
font-weight: bold;
}
b{
font-size: 140%;
font-weight: bold;
}
#aboutIN{
animation: bgcolor infinite 25s;
<!-- animation-iteration-count: 1; -->
}
@keyframes bgcolor{
0%{
background: lightcyan
;
}
60%{
background: #ccffcc;
}
}
hr.type_3 {
border: 0;
height: 25px;
background-image: url(type_3.JPG);
background-repeat: no-repeat;
}
li.button:hover {background-color: #ffc34d;
}
li.button:active {
background-color: #ffc34d;
box-shadow: 0 5px 5px #666;
transform: translateY(4px);
}
a{
font-family: courier;
text-decoration: none;
font-weight: 900;
color: black;
font-size: large;
}
a:link, a:visited {
color: black;
}
.center{
display: block;
margin-left: auto;
margin-right: auto;
}