cover
commit
7bdad0f4c9
@ -0,0 +1,45 @@
|
|||||||
|
:root{
|
||||||
|
--text: black;
|
||||||
|
--carbon-paper: blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
body{
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*//////// hmtl tag ////////*/
|
||||||
|
|
||||||
|
button:hover{
|
||||||
|
background-color: white;
|
||||||
|
color: var(--carbon-paper);
|
||||||
|
border: 1px solid var(--carbon-paper);
|
||||||
|
padding: 2px 5px;
|
||||||
|
border-radius:4px;
|
||||||
|
mix-blend-mode: multiply;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* ///////// class elem /////////// */
|
||||||
|
|
||||||
|
header button{
|
||||||
|
position:relative;
|
||||||
|
top: ;
|
||||||
|
}
|
||||||
|
.cover, .thesis{
|
||||||
|
width: 60%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.cover h1{
|
||||||
|
font-size: 60pt;
|
||||||
|
}
|
||||||
|
.cover h3{
|
||||||
|
font-size: 18pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,47 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>H-M-W-C</title>
|
||||||
|
<link rel="stylesheet" href="css/style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header class="cover">
|
||||||
|
<button onclick="window.print(); return false">print the whole publication</button>
|
||||||
|
<button>go to boiler inspection</button>
|
||||||
|
<button>print </button>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="cover">
|
||||||
|
<h1>Hacking Maintenance with Care</h1>
|
||||||
|
<h3>Reflections on the self-administered survival of digital solidarity networks</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ////////////////////THE THESIS TO BE PRINTED//////////////////////// -->
|
||||||
|
<div class="thesis">
|
||||||
|
<div class="tb-content">
|
||||||
|
table of contents:
|
||||||
|
</div>
|
||||||
|
<div class="intro">
|
||||||
|
<h2>Introduction</h2>
|
||||||
|
</div>
|
||||||
|
<div class="chapter" id="ch-1">
|
||||||
|
<h2>Clumsy legs</h2>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- //////////////////////BOILER INSPECTION - HOW DOES IT WORK/////////////////////// -->
|
||||||
|
<div class="boiler-inspection">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue