-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
67 lines (58 loc) · 1.37 KB
/
Copy pathstylesheet.css
File metadata and controls
67 lines (58 loc) · 1.37 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
p {
font-size: 14pt;
}
.highlightimg {
border: solid #ddd;
border-radius: 4px;
margin: auto;
}
.highlightimg:hover {
box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
.typewriter h1 {
width: 6em;
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto; /* Gives that scrolling effect as the typing happens */
font-family: "Courier New", Courier, monospace;
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 1.5s steps(8, end),
blink-caret .75s step-end infinite;
}
.miniver-regular {
font-family: "Miniver", cursive;
font-weight: 400;
font-style: normal;
font-size: 20pt;
}
.banner-outer {
min-width: 100%;
height: 20em;
}
.banner {
min-width: 100%;
height: 20em;
background-image: url("images/banner-brain.jpg");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.headland-one-regular {
font-family: "Headland One", serif;
font-weight: 400;
font-style: normal;
color: white;
text-align: center;
}
/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 6em }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: orange; }
}