.text {
font-size: 12px;
@include media-breakpoint-up(md) {
font-size: 20px;
}
}
.text {
font-size: 12px;
}
@media (min-width: 767px) {
font-size: 20px;
}
.text {
font-size: clamp(12px, 3vw, 30px);
}
таблица tasks
id | other_fileds...
таблица rewards_diplomas
id | other_fields...
таблица rewards_currencies
id | other_fields...
и т.д.
reward_task - связная таблица
task_id | reward_type | reward_id
task_id - идентификатор задачи
reward_type - тип награды (diploma, currency..)
reward_id - идентификатор награды из соответствующей таблицы
@media screen and (hover: none) and (orientation: portrait){
body::after {
content: 'Поверните телефон в горизонтальное положение';
z-index: 999999;
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
color: white;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
}
Решил сделать переход с MD5 на SHA256
Имеем выражение: (100vh - 656px) / 2 + 330px =
Раскроем скобки: 100vh / 2 - 656px / 2 + 330px =
Выполним деление: 50vh - 328px + 330px
Сложим коэффициенты: -328px + 330px = 2px
собираем воедино: 50vh + 2px
use Google\Client;
use Google\Service\Drive;
function searchFiles()
{
try {
$client = new Client();
$client->useApplicationDefaultCredentials();
$client->addScope(Drive::DRIVE);
$driveService = new Drive($client);
$files = array();
$pageToken = null;
do {
$response = $driveService->files->listFiles(array(
'q' => "mimeType='image/jpeg'",
'spaces' => 'drive',
'pageToken' => $pageToken,
'fields' => 'nextPageToken, files(id, name)',
));
foreach ($response->files as $file) {
printf("Found file: %s (%s)\n", $file->name, $file->id);
}
array_push($files, $response->files);
$pageToken = $response->pageToken;
} while ($pageToken != null);
return $files;
} catch(Exception $e) {
echo "Error Message: ".$e;
}
}
кликнуть по кнопке, не теряя фокуса с поля
mask-image: url(/svg/#{$item}.svg);
<!-- лэйаут -->
<div @class(['about-content' => request()->is('About')])>
@yield('content')
</div>
<!--Дочерний-->
<div class="pb-5 management-content">
<div class="container">
<h2>MANAGEMENT PHILOSOPHY</h2>
...
</div>
</div>