-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathh22_web_app_01_style.css
More file actions
49 lines (44 loc) · 916 Bytes
/
h22_web_app_01_style.css
File metadata and controls
49 lines (44 loc) · 916 Bytes
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
@import url('https://fonts.googleapis.com/css?family=Emilys+Candy|Patua+One&display=swap');
body {
background-image: url('black.jpg');
background-size: cover;
background-repeat: no-repeat;
color: white;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
}
h1 {
font-family: 'Emilys Candy', cursive;
font-weight: normal;
font-size: 48px;
text-align: center;
margin-bottom: 0;
}
h3 {
margin-top: 4px;
font-size:32px;
font-family: 'Patua One', cursive;
font-weight: normal;
color: #ffeaa7;
text-shadow: 3px 3px black;
}
a {
background-color: white;
color: black;
padding: 20px;
border-radius: 20px;
text-decoration: none;
cursor: pointer;
font-family: 'Patua One', cursive;
font-size: 18px;
display: inline-block;
margin-top: 20px;
}
img {
display: block;
margin: auto;
margin-bottom: 30px;
}