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
·126 lines (116 loc) · 2.08 KB
/
style.css
File metadata and controls
executable file
·126 lines (116 loc) · 2.08 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
116
117
118
119
120
121
122
123
124
125
126
/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */
body{
margin: 0;
padding: 0;
}
.header{
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 1rem;
margin-bottom: 1rem;
align-items: flex-end;
padding-right: 4rem;
height: 5rem;
}
.header-logo{
height: 50px;
width: 50px;
padding-left: 4rem;
}
logo-img{
margin-bottom: -10rem;
}
ul{
width: 100%;
margin: 0 0 0 250px;
list-style: none;
}
nav{
width: 100%;
overflow: auto;
}
li{
float: left;
}
li a{
width: 100%;
display: block;
padding: 20px 15px;
text-decoration: none;
font-family: sans-serif;
color: black;
text-align: center;
}
.main{
background-image: url(../img/first-background.jpg);
height: 100vh;
width: 100%;
color: white;
text-align: center;
font-size: 1.8rem;
margin-bottom: 1rem;
}
.main h1{
font-family: 'Times New Roman', Times, serif;
margin-bottom: 1rem;
font-size: 1.8rem;
text-align: center;
margin-top: 5rem;
}
.main p{
font-size: 1.2rem;
margin-bottom: 1rem;
text-align: center;
}
.main button{
color: black;
background-color: orangered;
font-family: Arial, Helvetica, sans-serif;
font-size: 1rem;
padding: 0.8rem;
margin-bottom: 6rem;
background-size: cover;
}
.main2{
margin-top: 5rem;
margin-bottom: 1rem;
text-align: center;
}
h1{
font-weight: lighter;
text-align: center;
font-size: 2rem;
}
.icons{
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
column-gap: 7rem;
}
.footer{
border-top: 1px solid grey;
margin: 1rem 4rem;
}
p{
font-weight: normal;
text-align: center;
font-size: medium;
}
.join us logo {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
column-gap: 1.3em;
width: auto;
height: 0.5rem;
border-radius: 50%;
padding: 0.5rem;
}
.footer-end{
text-align: center;
color: black;
font-size: small;
}