-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (91 loc) · 1.71 KB
/
style.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
/* https://css-tricks.com/box-sizing/ */
html {
box-sizing: border-box;
font-family: Helvetica, Arial, sans-serif;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
background-color: pink;
margin: 0 auto;
max-width: 640px;
}
h1 {
font-family: 'Comic Sans MS', cursive, sans-serif;
font-weight: bold;
color: aquamarine;
text-shadow: black 3px 3px;
font-size: 32pt;
}
.site-header-link {
text-decoration: none;
}
.header-subtitle {
font-family: 'Comic Sans MS', cursive, sans-serif;
text-decoration: none;
color: aquamarine;
text-shadow: black 1px 1px;
}
h2 {
margin: 0;
font-size: 20px;
}
h3 {
font-size: 16px;
}
section {
background-color: #fff4f6;
padding: 20px;
}
article {
margin-top: 30px;
font-size: 12pt;
}
table {
border-collapse: collapse;
/* https://developer.mozilla.org/en-US/docs/Web/CSS/border-collapse */
}
th {
border: 3px solid black;
margin: 0;
padding: 0;
}
td {
border: 1px solid black;
margin: 0;
padding: 0;
}
footer {
background-color: #fff4f6;
}
.marquee {
background-color: black;
overflow: hidden;
}
/* https://www.quackit.com/css/codes/marquees/ */
.marquee-text {
font-family: 'Comic Sans MS', cursive, sans-serif;
/* Starting position */
transform:translateX(100%);
/* Apply animation to this element */
animation: marquee-animation 15s linear infinite;
color: aquamarine;
overflow: visible;
white-space: nowrap;
}
@keyframes marquee-animation {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
#html5-validator {
height: 31px;
}
.construction-sign {
margin: 0 20px;
height: 64px;
}