Skip to content

Commit bf73717

Browse files
committed
made css look all 1999
1 parent 0ff423c commit bf73717

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

css/default.css

+14
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
body{
22
font-size: 16px;
33
color: #000000;
4+
margin: 0px auto;
5+
text-align: center;
6+
background: #dedede;
7+
font-family: "century gothic", arial, sans-serif;
8+
}
9+
10+
#content {
11+
width: 80%;
12+
background: #ffffff;
13+
border: 3px solid #2222a2;
14+
border-radius: 6px;
15+
-webkit-box-shadow: 3px 3px 3px 3px rgba(55,55,55,.45);
16+
box-shadow: 3px 3px 3px 3px rgba(55,55,55,.45);
417
}
518

619
h1,h2,h3,h4,h5,h6{
720
font-weight: bold;
821
text-align: center;
922
color: #333333;
23+
font-family: Times, serif;
1024
}
1125

1226
p{

index.html

+2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
</head>
66

77
<body>
8+
<div id="content">
89
<h1>GitHub Training</h1>
910
<h2>Basic Repository Example</h2>
1011

1112
<p>
1213
A repo that has just 5 basic commits on master by three different coders.
1314
</p>
15+
</div>
1416
</body>
1517
</html>

0 commit comments

Comments
 (0)