-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.css
More file actions
101 lines (90 loc) · 1.47 KB
/
Project.css
File metadata and controls
101 lines (90 loc) · 1.47 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
body {
font-family: "PT Sans" sans-serif;
background-color: #252529;
margin: 0;
color: #ffffff;
line-height: 1.6;
}
a {
text-decoration: none;
color: #cccccc;
}
#Heading {
margin: 0;
padding: 0;
background: url("Wallpaper.jpg") no-repeat center/cover;
width: 100%;
height: 100vh;
position: relative;
overflow: hidden;
}
#Heading .container {
margin-top: 25vh;
}
#Heading h1 {
color: rgb(255, 255, 255);
margin: 425px;
font-size: 4rem;
margin-bottom: 0px;
}
#Heading h2 {
font-size: 2rem;
}
nav {
height: 40px;
width: 100%;
background-color: #333;
color: rgb(51, 34, 34);
position: fixed;
}
nav ul {
margin: 0;
padding: 0;
}
nav li {
display: inline;
float: left;
}
nav a {
display: inline-block;
width: 100px;
text-align: center;
text-decoration: none;
padding: 10px 0px;
color: #eee;
}
nav li:hover {
background-color: #444;
}
.container {
max-width: 1180px;
text-align: center;
margin: 0 auto;
padding: 0 3rem;
}
.section_main_content {
font-size: 1.3rem;
}
footer .footer_cols {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(4, 1fr);
padding: 2rem;
text-align: left;
font-size: 14px;
}
footer .footer_cols ul{
list-style: none;
}
footer .footer_cols ul li:first-child{
font-size: 1.2rem
;
padding-bottom: 0.5rem;
border-bottom: #444 solid 1px;
margin-bottom: 1rem;
}
footer .footer_bottom{
padding: 1rem;
background-color: #333;
text-align: center;
}