-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (100 loc) · 1.66 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (100 loc) · 1.66 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
*{
box-sizing: border-box;
}
body{
margin: 0;
padding: 0;
}
.nav-bar {
background-color: white;
position: fixed;
width: 100%;
height: 60px;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-bar img{
width: 150px;
}
.nav-bar ul{
list-style: none;
display: flex;
gap: 30px;
}
.nav-bar li{
display: inline;
}
.nav-bar a{
text-decoration: none;
color: black;
}
.header {
background-image: url(/images/landing.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 900px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.header h1{
color: white;
font-size: 90px;
}
.header h3{
color: white;
font-size: 45px;
}
.specs {
display: flex;
justify-content: space-around;
align-items: flex-start;
gap: 100px;
}
.heading{
text-align: center;
font-size: 35px;
}
.spec{
display: flex;
flex-direction: column;
align-items: center;
width: 50px;
align-items: center;
margin-bottom: 20px;
}
.spec h3{
color: green;
font-weight: 900;
}
.icon{
height: 100px;
width: 100px;
}
.kanye {
background: green;
display: flex;
justify-content: space-around;
align-items: center;
padding: 60px 40px;
}
.kanye .left {
color: white;
width: 50%;
}
.kanye h2 {
font-size: 2.5em;
color:white;
text-decoration: underline;
margin-bottom: 20px;
}
.kanye h3 {
font-size: 1.5em;
color: white;
margin-top: 20px;
}