From 35ad5bba585531d2884c7ecfadc238337bd31e3c Mon Sep 17 00:00:00 2001 From: liuqimichale <123456lq> Date: Mon, 20 Nov 2017 11:03:32 +0800 Subject: [PATCH] init --- .idea/vcs.xml | 6 ++++++ 123.html | 10 ---------- css/libCss/common.css | 26 ++++++++++++++++++++++++++ index.html | 13 +++++++++++++ 4 files changed, 45 insertions(+), 10 deletions(-) create mode 100644 .idea/vcs.xml delete mode 100644 123.html create mode 100644 css/libCss/common.css create mode 100644 index.html diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/123.html b/123.html deleted file mode 100644 index 566549b..0000000 --- a/123.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - Title - - - - - \ No newline at end of file diff --git a/css/libCss/common.css b/css/libCss/common.css new file mode 100644 index 0000000..ac35ae9 --- /dev/null +++ b/css/libCss/common.css @@ -0,0 +1,26 @@ +body{ + position: relative; +} +body,html{ + width: 100%; + height: 100%; +} +header{ + height: 100px; + width: 100%; + background-color: #f00; +} +nav{ + position: absolute; + width: 100px; + height: 100%; + background-color: #000; + left: 0; + top:0; + padding-top: 100px; +} +section{ + width: 100%; + height: 100%; + padding-left: 100px; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..b49d1a7 --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ + + + + + 首页 + + + +
header
+ +
header
+ + \ No newline at end of file -- libgit2 0.21.4