working on css

This commit is contained in:
aj 2019-02-16 15:30:12 +00:00
parent 65986102a9
commit 2da3c57668
3 changed files with 38 additions and 2 deletions

7
static/bodystyle.css Normal file
View File

@ -0,0 +1,7 @@
h3 {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 12px;
}

View File

@ -5,7 +5,14 @@ body {
h1 {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 10vw;
font-size: 14vw;
text-shadow: 3px 3px 3px #aaa;
}
h3 {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 4vw;
text-shadow: 3px 3px 3px #aaa;
}
@ -16,3 +23,20 @@ a {
font-size: 2vw;
text-shadow: 2px 2px 2px #aaa;
}
p {
color: white;
font-family: 'Ubuntu', sans-serif;
font-size: 4vw;
text-shadow: 2px 2px 2px #aaa;
}
.header {
background-color: #58518e;
padding: 25px;
text-align: center;
margin: auto;
}

View File

@ -4,11 +4,16 @@
<title>sarsoo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
//<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
</head>
<body>
<div class="header">
<h1>sarsoo</h1>
</div>
<p>electronic engineering student</p>
<a href="https://github.com/sarsoo">github</a>
</body>
</html>