-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (39 loc) · 763 Bytes
/
Copy pathstyle.css
File metadata and controls
40 lines (39 loc) · 763 Bytes
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
nav {
background-color: #708090;
color: white;
display: -ms-grid;
display: grid;
-ms-grid-columns: 30% 60%;
grid-template-columns: 30% 60%;
-webkit-column-gap: 10%;
column-gap: 10%;
padding: 0% 5%;
font-family: Georgia, 'Times New Roman', Times, serif;
text-align: center;
}
body{
background-color: #2c3e50;
text-align: center;
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
#main{
text-align: center;
position: relative;
left: 500px;
}
img{
height: 500px;
padding-top: 10px;
}
a{
margin-top: 15px;
width: 200px;
}
span{
font-size: large;
font-family: "Times New Roman", Times, serif;
}