-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
90 lines (75 loc) · 2.04 KB
/
styles.css
File metadata and controls
90 lines (75 loc) · 2.04 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
.content{
min-height: 500px;
background-color: gray !important;
margin: 2px,2px,2px,2px !important;
}
.footer{
min-height: 200px;
background-color: yellowgreen;
align-content: flex-end;
}
.wrapper {
display: relative;
margin-top: 2rem;
/* align-content: center;
align-self: center; */
}
.typing-demo {
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: solid transparent; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
word-wrap: break-word;
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 2s steps(40, end),
blink-caret .75s step-end infinite;
animation-iteration-count: infinite;
animation-direction: alternate-reverse;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink {
from, to { border-color: transparent }
100% { border-color: orange; }
}
green-color {
color:green;
}
.copyright{
min-height: 50px;
background-color:black;
color: chocolate;
}
.page-header{
text-transform: uppercase;
text-decoration: underline;
background-color: blueviolet;
color: white !important;
}
.title-section{
background-color: rgba(255, 0, 0, 0.5);
}
.search-card {
/* Replace 'red', 'green', and 'blue' with actual integer values */
box-shadow: 0 0 10px rgba(255, 0, 0, 0.5); /* shadow with red color */
}
.results-card{
box-shadow: 0 0 10px rgba(0, 255, 0, 0.5); /* shadow with red color */
min-height: 300px;
}
/* glowing card */
.glowing-card {
box-shadow: 0 0 10px rgba(115, 0, 255, 0.5);
animation: glow 1s ease-in-out infinite alternate;
}
/* 404 page */
.error-page{
background-image: -webkit-gradient(linear, left top, left bottom, from(#1e5799), to(#2989d8));
/* add shaking animation */
animation: shake 0.5s linear infinite !important;
/* glowing border */
border: 1px solid #fff;
box-shadow: 0 0 10px #fff;
}