Skip to content
This repository was archived by the owner on Sep 5, 2019. It is now read-only.

Commit 080aa93

Browse files
committed
Update
1 parent 9210cbb commit 080aa93

File tree

3 files changed

+24
-33
lines changed

3 files changed

+24
-33
lines changed

src/css/style.css

Lines changed: 0 additions & 31 deletions
This file was deleted.

src/css/style.tables.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ table {
88

99
table td,
1010
table th {
11-
padding: 5px 8px;
11+
font-weight: 600;
12+
padding: 5px 8px;
1213
}
1314

1415
table td {

src/index.html

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,28 @@
88
<title>CSS UI - Table</title>
99

1010
<!-- CSS styles -->
11-
<link rel="stylesheet" href="css/style.css">
11+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
12+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,600&amp;subset=latin-ext">
13+
<link rel="stylesheet" href="https://css-ui.github.io/css/cssui.min.css">
14+
<link rel="stylesheet" href="css/style.tables.css">
15+
<style>
16+
body {
17+
background-color: #f4f4f4;
18+
font-family: 'Open Sans', sans-serif;
19+
}
20+
21+
.container {
22+
margin-bottom: 25px;
23+
margin-top: 25px;
24+
width: 765px;
25+
}
26+
27+
.container .box {
28+
background-color: white;
29+
border-radius: 3px;
30+
padding: 15px;
31+
}
32+
</style>
1233
</head>
1334
<body>
1435
<!-- container -->

0 commit comments

Comments
 (0)