mirror of
https://github.com/mrrpnya/lipu-sona.git
synced 2025-02-13 16:44:39 +00:00
added some style
This commit is contained in:
parent
4a971e13d2
commit
e62c3cd9d1
3 changed files with 41 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,3 +1,5 @@
|
||||||
|
-include Makefile.pwd
|
||||||
|
|
||||||
OUTDIR=out
|
OUTDIR=out
|
||||||
PAGEDIR=pages
|
PAGEDIR=pages
|
||||||
SRCDIR=src
|
SRCDIR=src
|
||||||
|
@ -14,7 +16,7 @@ OUT_STATIC = $(patsubst static/%,out/%,$(_STATIC))
|
||||||
|
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.PHONY: all
|
.PHONY: all upload
|
||||||
|
|
||||||
all: $(PAGES_HTML) $(OUT_STATIC)
|
all: $(PAGES_HTML) $(OUT_STATIC)
|
||||||
|
|
||||||
|
|
|
@ -11,3 +11,33 @@ body {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body a {
|
||||||
|
color: #204a87;
|
||||||
|
}
|
||||||
|
|
||||||
|
body a:visited {
|
||||||
|
color: #5c3566;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
background: #2e3436;
|
||||||
|
color: #eeeeec;
|
||||||
|
font-family: sans-serif;
|
||||||
|
min-height: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header a, .header a:visited {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header h2, .header h3 {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
background: #d3d7cf;
|
||||||
|
color: #555753;
|
||||||
|
font-family: sans-serif:
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
|
|
@ -7,6 +7,13 @@
|
||||||
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
|
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div class="header">
|
||||||
|
<h2><a href="/">rnd's website</a> | </h2><h3><?theme title?></h3>
|
||||||
|
</div>
|
||||||
|
<div class="content">
|
||||||
<?theme body?>
|
<?theme body?>
|
||||||
|
</div>
|
||||||
|
<div class="footer">
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Reference in a new issue