-
Notifications
You must be signed in to change notification settings - Fork 130
/
style.css
72 lines (54 loc) · 1.05 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
/* Add flexbox to the navbars. */
/* Format the size of all images. */
/* Style the font color. */
/* Style the background with a color or image. */
/* Adjust the spacing of your page. */
/* Adjust the positioning of your page. */
* {
box-sizing: border-box;
}
body {
background-color: #f9d60e;
padding: 20px;
font-family: Arial;
}
.heading{
background-color: #373738;
color: #efeff2;
padding: 1em;
}
.main {
max-width: 1000px;
margin: auto;
}
h1 {
font-size: 50px;
word-break: break-all;
}
.content {
background-color: #272b30;
margin: 20px;
padding: 10px;
color: white;
}
.btn {
border: none;
outline: none;
padding: 12px 16px;
background-color: white;
cursor: pointer;
margin-right: 20px;
}
nav {
background-color: #272b30;
padding: 10px;
border-radius: 10px;
}
footer {
background-color: #272b30;
padding: 20px;
color: white;
text-align: center;
font-size: 1em;
border-radius: 10px;
}