forked from Ojas-Arora/SCD-Profile-Score
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (68 loc) · 1.12 KB
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
background-color: antiquewhite;
color: #333;
}
.navbar .logo h2{
margin-top: 10px;
}
/* Sections */
.section {
padding: 60px 20px;
max-width: 80%;
margin: auto;
}
.home-section {
background-color: #ffffff;
text-align: center;
}
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
justify-content: space-between;
background: transparent;
border: none;
padding: 0;
}
.hamburger span {
height: 3px;
width: 100%;
background: #fff;
display: block;
border-radius: 10px;
margin: 8px 0;
width: 45px;
height: 6px;
}
/* Headings */
h1, h2 {
margin-bottom: 20px;
color: rgb(202, 98, 12);
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 2em;
}
/* Paragraph */
p {
font-size: 1.1em;
margin-bottom: 20px;
}
footer {
background-color: rgb(45, 43, 42);
color: #fff;
text-align: center;
padding: 20px 0;
position: relative;
bottom: 0;
width: 100%;
}