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
·112 lines (94 loc) · 1.95 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·112 lines (94 loc) · 1.95 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
/* 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;
};
/**
* Add your custom styles below
*
* Remember:
* - Be organised, use comments and separate your styles into meaningful chunks
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
* - When using Flexbox, remember the items you want to move around need to be inside a parent container set to 'display: flex'
*/
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.nav-bar {
display: flex;
justify-content: space-between;
padding: 0 20px;
overflow: hidden;
}
.nav-link {
color: #030101;
display: block;
font-size: 15px;
float: left;
padding: 16px;
text-align: center;
text-decoration: none;
}
.nav-link:hover {
color: #ec7f4c
}
.intro {
color: white;
background-image: url("../img/first-background.jpg");
background-repeat: no-repeat;
background-size: cover;
align-items: center;
flex-direction: column;
justify-content: center;
height: 800px;
display: flex;
}
button {
background-color: #ec7f4c;
border-radius: 4px;
border: none;
color: white;
padding: 10px 20px;
margin-top: 30px;
}
h1 {
font-size: 50px;
}
.main-information {
text-align: center;
margin-top: 30px;
}
.information {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.display-icon {
width: auto;
align-items: center;
padding: 50px;
}
.footer{
display: flex;
flex-direction: column;
align-items: center;
color: rgb(92, 92, 92);
}
.footer icon{
display: flex;
padding: 0px;
}
.icon-image{
width: 15px;
padding: 0.8rem;
}
.social-media-icon{
border: 1px solid rgb(114, 113, 113);
text-align: center;
border-radius: 70%;
margin: 0.5rem;
}