-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (81 loc) · 1.61 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
body {
background-color: #141640;
color: rgb(217, 210, 223);
}
main {
text-decoration: none;
text-align: center;
display: flex;
align-items: center;
justify-content: space-evenly;
color: rgb(255, 166, 0);
font-size: large;
font-weight: 700;
}
/* #content{
display: flex;
justify-content: space-around;
align-items: center;
align-content: center;
} */
#nav-bar {
display: flex;
justify-content: space-evenly;
align-items: center;
text-decoration: none;
align-content: center;
border-bottom: 2px solid rgb(253, 251, 251);
padding-bottom: 10px;
cursor: grab;
}
a {
text-decoration: none;
color: rgb(249, 248, 250);
}
button {
font-style: italic;
font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
stroke: aliceblue;
color: rgb(44, 26, 4);
width: 160px;
height: 50px;
border: 2px solid;
border-color: rgb(255, 166, 0);
font-size: large;
cursor: grab;
}
footer {
border-top: 1px solid rgb(253, 251, 251);
padding-top: 5px;
cursor: grab;
}
#social-media {
display: flex;
justify-content: space-around;
align-items: center;
text-decoration: none;
align-content: center;
}
#contact {
display: flex;
justify-content: space-evenly;
align-items: center;
text-decoration: none;
align-content: center;
}
#content-text {
color: chocolate;
}
@keyframes reveal {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#content-type {
animation: reveal 1s ease-in-out forwards;
display: inline-block;
}