-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
111 lines (100 loc) · 1.68 KB
/
main.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
/* main.css for Wiki Viewer */
body {
font-family: 'Lato', sans-serif;
font-size: 100%;
max-height: 100%;
color: #000;
}
h1 {
font-size: 6.5em;
padding-bottom: 1%;
color: white;
text-shadow: .05em .05em .025em #000;
}
h2 {
color: white;
}
h3{
text-decoration: none;
color: white;
}
h3:hover{
color: #9C27B0;
}
a:hover{
text-decoration: none;
}
hr {
box-shadow: .1em .1em .05em #000;
}
.container {
width: 100%;
margin: 30vh auto 0vh;
text-align: center;
}
.well {
background-color: rgba(200,200,200,0.4);
}
#input {
height: 2.899em;
margin-bottom: 1.3px;
box-shadow: .1em .1em .05em #000;
}
button {
height: 3em;
box-shadow: .1em .1em .05em #000;
}
#clickSearch {
outline:none;
}
#clickRandArt {
text-decoration: none;
color: #000;
outline: none;
}
.entry p {
font-size: 1.5em;
}
footer {
font-size: 1.3em;
min-height: 5vh;
padding: 1.5em;
width: 100%;
height: 5em;
right: 0;
bottom: 0;
left: 0;
color: #fff;
text-align: center;
text-shadow: .05em .05em .025em #000;
}
#linkedinIcon {
padding-left: 0.25em;
color: #fff;
}
#githubIcon{
padding-right: 0.25em;
color: #fff;
}
/* TYPED.JS ANIMATION CURSOR STYLING-OPTIONS*/
.typed-cursor{
opacity: 1;
-webkit-animation: blink 1.0s infinite;
-moz-animation: blink 1.0s infinite;
animation: blink 1.0s infinite;
}
@keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}