Skip to content

Commit 86d1777

Browse files
committed
use auto margins in global.css; add viewport to index.html
1 parent 6694be7 commit 86d1777

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

global.css

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
21
body {
3-
margin: 0.5in 1in;
2+
max-width: 1000px;
3+
margin: 0.5in auto 1in auto;
4+
padding: 0 1em;
45
background-color: white;
56
color: black;
67
font-size: 16px;
78
}
89

910
h1, h2, h3 {
10-
color: maroon;
11+
color: maroon;
1112
}
1213

1314
li {
1415
margin-bottom: 10px;
15-
}
16+
}

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<head>
44
<title>Standard ML Family GitHub Project</title>
55
<link href="global.css" rel="stylesheet" type="text/css">
6+
<meta name="viewport" content="width=device-width, initial-scale=0.8">
67
</head>
78

89
<body BGCOLOR="ffffff">

0 commit comments

Comments
 (0)