-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (110 loc) · 2.46 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
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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: url('https://images.hdqwalls.com/wallpapers/a-lofi-romance-db.jpg') center center fixed;
background-size: cover;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
/* Preloader */
#preloader {
height: 100%;
width: 100%;
background: white url('thatzane.com/love/assests/preloader.gif') no-repeat center center;
background-size: 10%;
position: fixed;
z-index: 100;
left: 0;
top: 0;
}
/* Love Container */
.love-container {
background-color: white;
color: #ff66a3; /* Dunkleres Pink */
text-align: center;
border-radius: 15px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.love-container h1 {
font-size: 1.5em;
}
.love-container p {
font-size: 1.2em;
margin-top: 20px;
}
/* Textfelder und Calculate-Button */
.love-container label,
.love-container input,
.love-container button {
margin: 10px 0;
font-size: 1em;
}
.love-container input {
padding: 10px;
border: 1px solid #ff66a3; /* Dunkleres Pink */
border-radius: 5px;
transition: background-color 0.3s;
}
.love-container input:hover {
background-color: #ffe8ed;
}
.love-container button {
background-color: #ff66a3; /* Dunkleres Pink */
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.love-container button:hover {
background-color: #e65c93; /* Dunkleres Pink */
}
/* Popup-Stil */
.popup-container {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgb(255, 255, 255);
border-radius: 15px;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
z-index: 101; /* Ãœber dem Preloader, der Z-Index ist 100 */
text-align: center;
}
.popup-container h2 {
color: #ff80a0; /* Pastellrosa Farbe */
}
.popup-container p {
margin: 10px 0;
}
.popup-container button {
background-color: #ff80a0; /* Pastellrosa Farbe */
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1em;
}
/* Für Handys */
@media only screen and (max-width: 1070px) {
body {
background-size: cover;
}
#preloader {
height: 100%;
width: 100%;
background: white url(thatzane.com/love/assests/preloader.gif) no-repeat center center;
background-size: 30%;
position: fixed;
z-index: 100;
left: 0px;
top: 0px;
}
}