-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (96 loc) · 1.62 KB
/
Copy pathstyles.css
File metadata and controls
115 lines (96 loc) · 1.62 KB
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
110
111
112
113
114
115
/* Resets */
body,
p,
li,
button,
ul,
a,
h1 {
text-decoration: none;
list-style: none;
margin: 0px;
}
body {
margin: 0px;
}
header nav ul{
padding: 0px;
}
/* Broad Rules */
body {
font-family: 'Open Sans', sans-serif;
background-color: #f9fafc;
display: flex;
flex-direction: column;
min-height: 100vh;
}
a {
color: #69696a;
}
/* Containers and Specific Rules */
.main-content-container {
margin: 10px;
}
.button-container {
display: flex;
align-items: center;
justify-content: center;
}
.homepage-buttons {
display: flex;
border-radius: 20px;
padding: 8px;
background-color: #000;
color: #FFF;
width: 100%;
align-items: center;
justify-content: center;
font-size: 14px;
}
header {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.p-chirpus-inc {
font-weight: bold;
}
header nav ul{
margin: 5px 0px;
list-style-type: none;
display: flex;
flex-direction: column;
}
header nav ul li{
margin: 5px 0px;
}
main h1{
font-size: 32px;
margin: 20px 0px;
}
.body-paragraph {
color: #69696a;
border-left: 3px solid #000;
padding: 0px 0px 0px 15px;
margin-bottom: 15px;
}
footer {
/* margin-top: auto; */
position:fixed;
bottom: 0;
width: 100%;
display: flex;
background-color: rgba(247, 193, 162, 0.7);
justify-content: space-between;
align-items: center;
box-sizing: border-box;
padding: 5px 15px 5px 20px
}
footer nav ul {
display: flex;
}
footer nav ul li {
padding: 5px;
}
@media only screen and (min-width: 768px) {
}