Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VSCode Schulung
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Schwertgen
VSCode Schulung
Compare revisions
ca5ab04829ca21f4002bd225c8dafa905dc35476 to 3e2741dfc879e8ad90e87ceffe34e0b78a20f462
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
david.schwertgen/vscode-schulung
Select target project
No results found
3e2741dfc879e8ad90e87ceffe34e0b78a20f462
Select Git revision
Swap
Target
david.schwertgen/vscode-schulung
Select target project
david.schwertgen/vscode-schulung
1 result
ca5ab04829ca21f4002bd225c8dafa905dc35476
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Schulungs Update
· e3d4ed7a
Subliminal Guy
authored
2 months ago
e3d4ed7a
Merge branch 'main' of
https://gitlab.ard.de/david.schwertgen/vscode-schulung
· 3e2741df
Subliminal Guy
authored
2 months ago
3e2741df
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
index.html
+8
-2
8 additions, 2 deletions
index.html
style.css
+12
-1
12 additions, 1 deletion
style.css
with
20 additions
and
3 deletions
index.html
View file @
3e2741df
...
...
@@ -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
This diff is collapsed.
Click to expand it.
style.css
View file @
3e2741df
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
;
...
...
This diff is collapsed.
Click to expand it.