Commit 170ec368 authored by Milan Iliev's avatar Milan Iliev

Extract CSS into main.css

parent cb4438d3
......@@ -2,39 +2,7 @@
<html lang="en">
<head>
<meta charset="utf8"/>
<style>
body {
display: grid;
grid-template:
"summary detail" 1fr
"controls controls" 40px
/1fr 1fr
;
}
task-list {
grid-area: summary;
display: grid;
}
task-summary:hover {
background-color: #eee;
cursor: pointer;
}
task-summary:active {
background-color: #ddd;
}
task-detail {
grid-area: detail;
background-color: #eee;
}
</style>
<link rel="stylesheet" href="main.css"/>
</head>
<body>
......
body {
display: grid;
grid-template:
"summary detail" 1fr
"controls controls" 40px
/1fr 1fr
;
}
task-list {
grid-area: summary;
display: grid;
}
task-summary:hover {
background-color: #eee;
cursor: pointer;
}
task-summary:active {
background-color: #ddd;
}
task-detail {
grid-area: detail;
background-color: #eee;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment