Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • david.schwertgen/vscode-schulung
1 result
Show changes
Commits on Source (2)
......@@ -10,8 +10,14 @@
</head>
<body>
<button class="main-button" type="button">Click</button>
<script type="module" src="index.js"></script>
<div class="container">
<h1 class="welcome">Willkommen zur VSCode Schulung!</h1>
<!-- <h1>git config --list --show-origin</h1>
<h1>git config --global user.name "Subliminal Guy"</h1>
<h1>git config --global user.email "david.schwertgen@rbb-online.de"</h1> -->
<!-- <button class="main-button" type="button">Click</button>
<script type="module" src="index.js"></script> -->
</div>
</body>
</html>
\ No newline at end of file
body {
height: 100vh;
margin: 0;
background: deepskyblue;
display: flex;
flex-direction: column;
......@@ -8,6 +7,18 @@ body {
align-items: center;
}
.container {
text-align: center;
width: 80 vw;
display: flex;
flex-direction: column;
}
.welcome {
color: cornsilk;
font-size: 3rem;
}
.user-data {
background: white;
padding: 20px;
......