Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbutv3/word-app/public/

PageElement.js
practice.js
style.css

style.css

162 lines ASCII Windows (CRLF)
.button-toggle {
  background-color: #ef3939;
}

.button-toggle[toggled] {
  background-color: #00bc61;
}

.hidden {
  display: none !important;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.w-50 {
  max-width: 50%;
}

.text-selectable {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.floating {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 40rem;
  transform: translate(-50%, -50%);
  background-color: rgb(245, 245, 245);
}

/* TAG DEFAULTS */

body {
  margin: 0;
  font-family: sans-serif;
}

main {
  gap: 1rem;
  font-size: 30px;
  font-family: sans-serif;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

button {
  padding: 1rem 2rem;
  background-color: rgb(68, 68, 255);
  color: white;
  border: none;
  border-radius: 4px;
}

input {
  padding: 0.5rem;
  background-color: white;
  border: none;
  border-radius: 4px;
}

input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  border: none;
}

textarea {
  display: block;
  padding: 0.5rem;
  background-color: white;
  border: none;
  border-radius: 4px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

p {
  margin: 0;
}

/* HEADER */

header {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.181);
}

header a,
header p {
  display: block;
  padding: 1rem 1.5rem;
  background-color: white;
  text-decoration: none;
  color: inherit;
  transition: all 0.1s;
}

header a:hover {
  background-color: rgb(68, 68, 255);
  color: white;
}

/* PRACTICE */

#translations {
  display: flex;
  gap: 1rem;
}

/* GPT EXAM */

#gpt-exam-window {
  font-size: 30px;
  font-family: sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 40rem;
  transform: translate(-50%, -50%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(100, 100, 104);
  display: flex;
}

#gpt-exam-window input {
  width: 100%;
  height: 30px;
  font-size: 30px;
}

#gpt-exam-window button {
  font-size: 30px;
}

/* PROGRESS PAGE */

.progress-container p {
  margin: 0;
  padding: 0.5rem;
}