-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (101 loc) · 2.15 KB
/
style.css
File metadata and controls
127 lines (101 loc) · 2.15 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
127
body{
margin: 0;
background-color: rgba(0, 0, 0, 0.553);
color: #fff;
font-family:Arial, Helvetica, sans-serif;
font-weight: 300;
line-height: 1.5;
}
a{
text-decoration: none;
color: #cccccc;
}
#Container{
margin: 0;
padding: 0;
background-image: url(https://www.websell.io/wp-content/uploads/2021/08/john-torcasio-65lGfqvewF4-unsplash-800x546.jpg);
background-position:center;
background-size: cover;
width: 100%;
height: 100vh;
overflow: hidden;
position: relative;
}
#Container h1{
font-size: 4rem;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
padding-bottom: 0.5rem;
}
#Container h3{
font-size: 1.6rem;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
nav{
height: 40px;
width: 100%;
background-color: rgba(0, 0, 0, 0.882);
padding: 0;
margin: 0;
position: fixed;
}
nav ul{
margin: 0;
padding: 0;
}
nav li{
display: inline;
float: left;
}
nav a{
display: inline-block;
width: 100px;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
padding: 8px 0;
text-decoration: none;
color: #faf9f9d6;
}
li a:hover{
border-style: solid;
text-decoration:wavy;
color: #eee;
}
.section_main{
max-width: 1180px;
text-align: center;
padding: 40px;
color: white;
font-weight: 400;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
margin: 0 auto;
padding: 10 5rem;
}
.lead{
font-size: 1.3rem;
font-family: sans-serif;
color: rgb(43, 42, 42);
font-weight: 500;
}
.bottom .bottom-cols{
display: grid;
grid-gap:20px;
grid-template-columns: repeat(4,1fr);
padding: 1.2rem;
text-align: left;
font-size: 1.2rem;
}
.bottom .bottom-cols ul{
list-style: none;
}
.bottom .bottom-cols ul li:first-child{
padding-bottom: 0.5rem;
border-bottom: #fff solid 2px;
font-size: 20px;
margin-bottom: 0.5rem;
}
footer .bottom-footer{
padding: 1.2rem;
background-color: rgba(0, 0, 0, 0.882);
text-align: center;
color: #eee;
}