-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (91 loc) · 1.87 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
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
/* CSS files add styling rules to your content */
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
margin: 2em;
font-family: "Comic Sans MS", cursive, sans-serif; /*My own font stack*/
color: white;
background-color: black; /*If setting a background image, make sure to set a background colour in case the image doesn't load*/
background-image: url("https://cdn.glitch.com/d2419787-ea5e-4821-a4e9-4d9ff9e9e2ad%2Fdave-hoefler-L9MxEYN1B9Y-unsplash.jpg?v=1595811281551");
background-size: cover; /*Sets the background image to the same size as the body*/
}
h1 {
font-family: "Rowdies", sans-serif; /*The font-family copied from Google fonts*/
font-style: italic;
color: orange;
text-align: center;
}
h2 {
color: papayaWhip;
font-weight: normal;
text-align: center;
background: rgba(225, 225, 225, 0);
}
footer {
background-color: rgba(232, 236, 241, 0.2);
background-size: cover;
padding: 10px;
margin-top: 1em;
text-align: center;
}
a {
color: white;
}
a:hover {
color: black;
}
img:hover {
opacity: 0.2;
}
strong {
color: white;
background-color: DarkMagenta;
}
.intro {
text-align: justify;
overflow: hidden;
}
.clouds {
height: 80vmin;
float: right;
margin-left: 25px;
}
.about {
text-align: center;
}
.image {
height: 30vmin;
margin-top: 10px;
margin-right: 10px;
margin-bottom: 10px;
}
/*
display: block;
margin-left: auto;
margin-right: auto;
*/
.logo {
width: 5%;
}
.special {
background-image: url("https://cdn.glitch.com/d2419787-ea5e-4821-a4e9-4d9ff9e9e2ad%2FIMG_8820.JPG?v=1595820918151");
background-opacity: 0.2;
background-size: cover;
color: orange;
padding: 10px;
border: 5px dashed;
}
.special h2 {
color: MediumTurquoise;
font-family: "Press Start 2P", sans-serif;
}
.last {
text-align: center;
font-family: "Baloo Tamma 2", sans-serif;
}