-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (94 loc) · 1.62 KB
/
styles.css
File metadata and controls
110 lines (94 loc) · 1.62 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
/* =================
WRITE YOUR CSS HERE.
Check the ⌄ for help with formatting and validating your code.
You must write some CSS to complete this challenge.
===================
*/
html,
html {
}
body {
padding: 10px;
margin: 10px;
}
/* don't edit this */
.jest-lite-report__status--pass {
background: var(--color-pass);
}
.jest-lite-report__errors {
display: none;
}
/* css for header */
ul {
list-style-type: none;
margin: 10;
padding: 10;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 16px 17px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #135;
}
.active {
background-color: grey;
}
/* css for banner */
.banner {
padding: 30px;
margin-top: 30px;
width: 100%;
height: 500px;
background-image: url(https://codeandhack.com/wp-content/uploads/2018/10/Most-in-demand-programming-languages.jpeg);
background-repeat: no-repeat;
background-repeat: repeat-x;
background-position: center center;
}
#aboutme {
padding: 50px;
text-align: center;
background-color: #474e5d;
color: white;
padding: 30px;
margin: 30px;
}
img {
width: 10%;
}
/* video css */
iframe {
padding-left: 25%;
width: 1046px;
height: 588px;
}
.iframe h1 {
padding-left: 25%;
color: blue;
}
/* contact section */
#contactme {
padding: 50px;
text-align: center;
background-color: #474e5d;
color: white;
padding: 30px;
margin: 30px;
}
/* footer css */
footer {
padding: 30px;
margin: 30px;
text-align: center;
padding: 3px;
background-color: #474e5d;
color: white;
}