forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.css
More file actions
92 lines (80 loc) · 1.37 KB
/
Copy pathstore.css
File metadata and controls
92 lines (80 loc) · 1.37 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
/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */
body {
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
}
body {
margin: 0;
}
/* header */
.header {
display: flex;
align-items: center;
justify-content: space-around;
height: 5rem;
width: 100%;
margin-bottom: 1rem;
padding-top: 1rem;
}
/* log */
.logo {
max-height: 90px;
width: auto;
}
/* Nav */
.nav-list {
display: flex;
list-style: none;
}
.nav-item {
padding: 0.5rem 0;
}
.nav-link {
color: rgb(182, 172, 172);
font-weight: 600;
text-decoration: none;
padding: 0 1em;
transition: opacity 0.15s;
}
.nav-link:hover {
color: #c86f49;
/* opacity: 0.8; */
}
#onlink {
color: black;
/* opacity: 0.5; */
}
/* .title {
color: red;
width: 60%;
border-radius: 15px;
margin: auto;
} */
/* button */
.button {
position: absolute;
background-color: #c05326;
color: white;
border: none;
border-radius: 3px;
margin: 4px 2px;
padding: 15px 32px;
}
/* footer */
.footer-p {
text-align: center;
font-size: 1em;
margin: 0.67em 0;
margin-top: 5px;
margin-bottom: 30px;
}
.footer {
display: inline-block;
/* width: 100px; */
text-align: center;
justify-content: center;
opacity: 0.6;
margin-bottom: 5px;
padding-right: 20px;
padding-left: 15px;
}