-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
132 lines (110 loc) · 2.01 KB
/
app.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
:root {
background-color: off-white;
font-size: 60%;
font-family: pt sans, sans-serif;
}
* {
box-sizing: border-box;
font-family: pt sans, sans-serif;
margin: 0;
padding: 0;
color: darkslategray;
}
h1,h2,
h3,h4 {
margin: 1rem;
}
h1 {
font-size: 5rem;
color: darkslategray;
margin-bottom: 3rem;
}
h1 > span {
font-size: 2rem;
font-weight: 700;
}
h2 {
font-size: 3rem;
margin-bottom: 2rem;
}
h3 {
font-size: 2rem;
margin-bottom: 1rem;
}
/*Buttons*/
.btn {
background-color: #ffb2ae;
padding: 1rem;
border: none;
border-radius: 5px;
font-size: 1.5rem;
font-weight: 700;
cursor: pointer;
text-decoration: none;
/* transition: all 0.3s ease-in-out; */
}
.btn:hover {
background-color: #ffb2ae;
color: white;
box-sizing: border-box;
box-shadow: inset 0 0 0 1px #ff4d4d;
transform: translate(-2px, -2px);
transition: all 0.3s ease-in-out;
}
/* Wenn noch nicht verfügbar */
.btn[disabled] {
box-shadow: none;
cursor: not-allowed;
}
/* Container über die ganze Seite, damit alles in der Flexbox passt */
.container {
width: 100%;
heitght: 100%;
max-width: 80rem;
display: flex;
justify-content: center;
/* max-width: 1200px; */
margin: 0 auto;
padding: 2rem;
}
.container > * {
flex: 1;
}
.container > *:first-child {
margin-right: 2rem;
}
.flex-column {
flex-direction: column;
}
.justify-center {
justify-content: center;
}
.text-center {
text-align: center;
}
.hidden {
display: none;
}
/* Formular */
.form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
input {
width: 100%;
padding: 1rem;
width: 100%;
max-width: 80rem;
margin: 0 auto;
padding: 2rem;
background-color: lightslategray;
border-radius: 5px;
border: 0.1px solid;
box-shadow: 0 0.2 0 0.1rem grey;
transition: all 0.3s ease-in-out;
}
input::placeholder {
color: lightslategray;
}