forked from Codi-T03/HTML-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (101 loc) · 2.09 KB
/
style.css
File metadata and controls
102 lines (101 loc) · 2.09 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
body {
background-image: linear-gradient(45deg, rgb(91, 91, 243), rgb(243, 55, 55));;
margin: auto;
max-width: 1300px;
}
header {
background-image: linear-gradient(45deg, blue, red);
width: 100%;
position: fixed;
top: 0;
z-index: 999;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 30px;
height: var(--headerheight);
max-width: 1300px;
box-shadow: -1px 9px 5px -4px rgba(0, 0, 0, 0.75);
-webkit-box-shadow: -1px 9px 5px -4px rgba(0, 0, 0, 0.75);
-moz-box-shadow: -1px 9px 5px -4px rgba(0, 0, 0, 0.75);
}
* {
box-sizing: border-box;
scroll-behavior: smooth;
font-family: 'Exo 2', sans-serif;
padding: 0%;
margin: 0%;
color: white;
}
footer {
padding: 20px;
background-image: linear-gradient(45deg, blue, red);
justify-content: space-around;
text-align: center;
font-size: large;
}
.step1 {
width: 100%;
display: flex;
justify-content: space-evenly;
margin-top: 40px;
}
.image3 img {
width: 150;
height: 60vh;
}
.step2 {
font-size: 20px;
font-weight: 500;
text-align: justify;
flex: 70%;
padding: 0 50px 0 0;
height: fit-content;
flex-wrap: wrap;
}
.logo {
text-decoration: none;
text-transform: capitalize;
font-weight: 700;
font-size: 1.8em;
color: white;
}
.navigation a {
text-decoration: none;
color: white;
font-weight: bold;
font-size: 1.1em;
padding-left: 28.8px;
text-transform: uppercase;
}
.step {
height: 60vh;
width: 100%;
display: flex;
align-items: center;
background: url(/image/gameimg.jpg) no-repeat;
background-size: contain;
background-attachment: fixed;
margin-top: var(--headerheight);
}
.step-text {
color: #f0e9d6;
text-decoration: none;
text-transform: capitalize;
font-weight: 700;
font-size: 1.5em;
}
section {
padding: 100px;
}
.adv {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
html {
text-align: justify;
}
.why {
background-image: linear-gradient(45deg, blue, red);
}