-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesnew.css
168 lines (147 loc) · 3.71 KB
/
stylesnew.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
body {
width: 100vw;
height: 100vh;
margin: 0;
background: black;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
canvas {
position: absolute;
top:0;
left:0;
z-index: -1;
}
.notransition {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
-ms-transition: none !important;
transition: none !important;
}
.pizza-slice {
background: url('pizzaslice.png');
background-size: cover;
background-position: center center;
height: 20px;
width: 20px;
display: block;
margin-right: 5px;
/* Other styles here */
}
.company {
background: url('company.png');
background-size: cover;
background-position: center center;
height: 20px;
width: 20px;
display: block;
margin-right: 5px;
/* Other styles here */
}
@media screen and (max-width: 500px) {
.text-box {
text-align: center;
font-size: 2vh;
font-family: 'Raleway', sans-serif;
letter-spacing: 7px;
word-spacing: 4px;
text-transform: uppercase;
color:rgb(238, 238, 238);
}
.button {
font-size: 16px;
font-weight: bold;
padding: 15px;
margin-left:20px;
margin-right:20px;
word-spacing: normal;
letter-spacing: 5px;
border: 1px solid white;
background: black;
cursor: pointer;
text-transform: none !important;
display: flex;
align-items: center; /* Wyrównaj elementy wertykalnie */
justify-content: center; /* Wyrównaj elementy poziomo */
width: 20vh; /* Ograniczenie szerokości do maksymalnie 100px */
max-height: 50px;
transition: opacity 0.3s ease background-color 0.3s ease, border-color 0.3s ease; /* Dodajemy efekt przejścia */
}
}
@media screen and (min-width: 501px) {
.text-box {
padding: 50px;
text-align: center;
font-size: 30px;
font-family: 'Raleway', sans-serif;
letter-spacing: 7px;
word-spacing: 4px;
text-transform: uppercase;
color:rgb(238, 238, 238);
}
.button {
font-size: 16px;
font-weight: bold;
padding: 15px;
margin-left:20px;
margin-right:20px;
word-spacing: normal;
letter-spacing: 5px;
border: 1px solid white;
background: black;
cursor: pointer;
text-transform: none !important;
display: flex;
align-items: center; /* Wyrównaj elementy wertykalnie */
justify-content: center; /* Wyrównaj elementy poziomo */
width: 20vh; /* Ograniczenie szerokości do maksymalnie 100px */
transition: opacity 0.3s ease background-color 0.3s ease, border-color 0.3s ease; /* Dodajemy efekt przejścia */
}
}
.button:hover {
background-color: #333; /* Zmieniamy tło na ciemniejsze */
border-color: #6200ff; /* Zmieniamy kolor obramowania na jasny */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Dodajemy cień */
}
.button-wrapper {
display: flex;
justify-content: center;
}
.custom-modal-background-pizza .modal-content {
/* background-color: #aa0000; */
background-color: #3b383f; /* Ustaw kolor tła */
}
.custom-modal-background-pizza .modal-header {
font-size: 15px;
}
.custom-modal-background-pizza .modal-body {
text-align: justify;
font-size: 15px;
color:rgb(238, 238, 238);
font-family: Arial, sans-serif;
line-height: 1.3;
}
.custom-modal-background-company .modal-header {
font-size: 15px;
}
.modal-body ul {
list-style-type: none;
padding: 0;
}
.custom-modal-background-company .modal-content {
/* background-color: #6200ff; */
background-color: #3b383f; /* Ustaw kolor tła */
}
.custom-modal-background-company .modal-body {
text-align: justify;
font-size: 15px;
color:rgb(238, 238, 238);
font-family: Arial, sans-serif;
line-height: 1.3;
}
.modal-header {
color:rgb(238, 238, 238);
}