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

Extract CSS into main.css

parent cb4438d3
...@@ -2,39 +2,7 @@ ...@@ -2,39 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf8"/> <meta charset="utf8"/>
<link rel="stylesheet" href="main.css"/>
<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>
</head> </head>
<body> <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