-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (85 loc) · 2.03 KB
/
style.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
body {
margin: 0;
overflow: hidden;
background-color: #222; /* Donkere achtergrond */
font-family: 'Montserrat', sans-serif; /* Gebruik Montserrat-lettertype */
color: #fff; /* Witte tekstkleur */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column; /* Plaats de teksten onder elkaar */
text-align: center; /* Centreer de tekst */
}
canvas {
position: absolute;
top: 0;
left: 0;
z-index: -1; /* Zet het canvas naar achteren */
}
/* Stijl voor de tekst */
#text-big {
font-size: 60px;
margin-bottom: 12px; /* Voeg wat ruimte toe onder de eerste tekst */
z-index: 1; /* Zet de tekst naar voren */
}
#text-small {
font-size: 24px;
margin-bottom: 40px; /* Voeg wat ruimte toe onder de eerste tekst */
z-index: 1; /* Zet de tekst naar voren */
}
#text-little {
font-size: 16px;
margin-bottom: 20px; /* Voeg wat ruimte toe onder de eerste tekst */
z-index: 1; /* Zet de tekst naar voren */
}
select.imageContainer {
display: grid;
grid-template-columns: 50% 50%;
grid-template-rows: 50% 50%;
grid-gap: 0.25rem;
padding: 0;
margin: 0;
align-items: center;
justify-content: center;
}
/* als je met tekst wilt werken*/
select.inputContainer {
padding: 1rem 0 0 0;
display: flex;
align-items: center;
justify-content: center;
}
form {
display: flex;
align-items: center;
justify-content: center;
width: 32.5rem;
}
/*input {
display: flex;
border: none;
box-shadow: 0px 6px 10px rgb(255, 255, 255);
-webkit-box-shadow: 0px 6px 11px 0px rgb(255, 255, 255);
-moz-box-shadow: 0px 6px 11px 0px rgb(255, 255, 255);
border-radius: 0.5rem 0 0 0.5rem;
width: 100%;
padding: 1.25rem;
}
button.submit {
padding: 1.25rem;
background-color: rgb(255, 255, 255);
border: none;
color: white;
text-transform: capitalize;
cursor: pointer;
border-radius: 0 0.5rem 0.5rem 0;
width: 10rem;
transition: background-color 0.3s ease-in-out;
}
button.submit:hover {
background-color: rgb(255, 255, 255);
}*/
.loading-text {
display: none;
}