Browse Source

Adding style.css

main
Jesus 2 years ago
parent
commit
bcaa67c60b
3 changed files with 10 additions and 0 deletions
  1. +8
    -0
      src/main/resources/static/css/style.css
  2. +1
    -0
      src/main/resources/templates/index.html
  3. +1
    -0
      src/main/resources/templates/time.html

+ 8
- 0
src/main/resources/static/css/style.css View File

@ -0,0 +1,8 @@
body{
background-color: slategrey;
color: white;
}
h1{
font-size: 4rem;
}

+ 1
- 0
src/main/resources/templates/index.html View File

@ -4,6 +4,7 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" media="all" href="/css/style.css">
<title>Index</title>
</head>
<body>


+ 1
- 0
src/main/resources/templates/time.html View File

@ -4,6 +4,7 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" media="all" href="/css/style.css">
<title>Time</title>
</head>
<body>


Loading…
Cancel
Save