-
Notifications
You must be signed in to change notification settings - Fork 32
/
layout.css
89 lines (76 loc) · 1.54 KB
/
layout.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
/* CSS for the Layout and Structure Only!
CSS Code in this file should apply to every
page on the website and not include any
aesthetic styling.
*/
body {
background: rgba(76, 175, 79, 0);
margin: 0;
text-align: center;
font-family: JetBrains Mono, monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
scroll-behavior: smooth;
display: block;
align-self: end;
text-decoration-thickness:72;
Left: 0; Top:0 ;
Width:917;
}
p {
line-height: 2;
}
h1 {
color: #66BFBF;
font-size: 5.625rem;
margin: 50px auto 0 auto;
font-family: 'Sacramento', cursive;
}
h2 {
color: #66BFBF;
font-family: 'Montserrat', sans-serif;
font-size: 2.5rem;
font-weight: normal;
padding-bottom: 10px;
}
h3 {
color: rgb(236, 66, 55);
text-transform: uppercase;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
}
h4{
padding-top: 5px;
color:aqua;
}
a {
color: black;
font-family: 'Montserrat', sans-serif;
margin: 10px 20px;
text-decoration: none;
}
a:hover {
color: #EAF6F6;
}
.bottom-container {
background: rgba(76, 175, 79, 0);
padding: 150px 0 10px;
}
.copyright {
color: #EAF6F6;
font-size: 0.75rem;
padding: 15px 0 10px;
}
#fiy:hover
{
text-shadow: .5px 1px yellow;
}
#fly{
transition: text-shadow 2s;
transition-delay: 2s;
}
.space{
padding-top: 25px;
}