-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (57 loc) · 989 Bytes
/
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
@import url("https://fonts.googleapis.com/css2?family=Asap:wght@400;600&display=swap");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: "Asap", sans-serif;
text-align: center;
}
h1 {
margin-top: 100px;
font-size: 70px;
}
p {
font-size: 25px;
padding: 0% 20%;
}
.text-white {
color: white;
}
nav,
#credits {
background-color: black;
height: 60px;
/* Your code goes here */
}
.container{
width: 500px;
/* Your code goes here */
display:inline-flex;
justify-content:space-evenly;
align-items: center;
}
.button {
background-color: #ffcc00;
padding: 8px;
}
a {
text-decoration: none;
}
#home img {
max-width: 100%;
}
.middle img {
width: 25%;
}
.middle {
min-height: 500px;
}
footer {
background-image: url(https://s3.ap-south-1.amazonaws.com/kalvi-education.github.io/front-end-web-development/black-background.png);
background-size: 100% 100%;
width: 100%;
min-height: 100%;
padding: 10% 0%;
}