forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
88 lines (73 loc) · 1.3 KB
/
styles.css
File metadata and controls
88 lines (73 loc) · 1.3 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
body,
html,
h1{
margin: 0;
padding: 0;
}
h1{
color: white;
font-size: 4rem;
top: 10px;
text-align: center;
}
section {
height: 25vh;
}
.tag {
opacity: 0;
transform: translate(0, 10vh);
transition: all 1s;
}
.tag.visible {
opacity: 1;
transform: translate(0, 0);
}
.pink {
background-color: #CC938F;
}
.yellow {
background-color: #D6C659;
}
.green {
background-color: #8CBFAB;
}
.purple {
background-color: #A892D6;
}
.blink-bg{
color: #ffffff;
padding: 14px;
display: inline-flexbox;
border-radius: 5px;
animation: blinkingBackground 2s infinite;
}
@keyframes blinkingBackground{
0% { background-color: #CCA78F;}
25% { background-color: #D6D45A;}
50% { background-color: #8CBFAB;}
75% { background-color: #4d7dc1;}
100% { background-color: #B8717D;}
}
h2{
padding-left: 25px;
}
p {
text-align: center;
margin-bottom: 15pt;
margin-top: 1pt;
}
p1{
text-align: left;
margin-left: 20pt;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.name{
color: #ffffff;
font-family: 'Pacifico', cursive;
padding-bottom: 0pt;
}