forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·107 lines (91 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·107 lines (91 loc) · 1.29 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
/* global */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
}
body {
-webkit-font-smoothing: antialiased;
width: 100%;
}
header {
height: 7vh;
width: 100%;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 10px;
padding-left: 10%;
padding-right: 10%;
}
#logo {
display: flex;
max-width: 1.5rem;
}
span {
font-weight: bold;
color: #55575e;
}
nav ul li {
list-style-type: none;
display: inline-block;
padding: 10px 20px;
}
nav ul li a {
text-decoration: none;
color: #9a9ea6;
}
nav ul li a:hover {
color: #e0633a;
}
.banner {
position: relative;
width: 100%;
margin: 0;
}
.banner img {
margin: 0;
width: 100;
}
.banner h1 {
color: white;
position: absolute;
top: 30%;
left: 50%;
widows: 100%;
text-align: center;
}
.banner h3 {
color: white;
position: absolute;
top: 40%;
text-align: center;
left: 50%;
}
.banner button {
color: white;
position: absolute;
top: 50%;
left: 50%;
text-align: center;
}
button {
color: white;
background-color: #e0633a;
padding: 1em 2em;
border: none;
border-radius: 5px;
cursor: pointer;
}
.container {
width: 100%;
}
.card {
width: 200px;
text-align: center;
float: left;
margin: 30px;
}