PHP Classes

File: frontend/src/components/InfoBanner/style.ts

Recommend this page to a friend!
  Classes of carlos carvalho   yrprey PHP application   frontend/src/components/InfoBanner/style.ts   Download  
File: frontend/src/components/InfoBanner/style.ts
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: yrprey PHP application
Web app to learn about OWASP API vulnerabilities
Author: By
Last change:
Date: 3 months ago
Size: 1,072 bytes
 

Contents

Class file image Download
import styled from "styled-components"; export const StyledInfoBanner = styled.div` position: relative; width: 540px; gap: 20px; border-radius: 6px; animation: shakeY 40s ease-in-out infinite alternate-reverse both; background: var(--grey-0); `; export const DivInfoBanner = styled.div` display: flex; position: absolute; top: 0; left: 0; justify-content: center; flex-direction: column; align-items: center; width: 100%; height: auto; gap: 20px; z-index: 2; padding: 45px; div { display: flex; flex-direction: column; gap: 20px; width: 100%; } h2 { font-weight: 700; font-size: 32px; line-height: 32px; color: var(--white); opacity: .8; padding-bottom: 14px; text-align: start; border-bottom: 1px solid var(--grey-4); } p { display: flex; align-items: center; font-weight: 500; font-size: 18px; line-height: 26px; text-align: start; color: var(--grey-2); opacity: .8; gap: 10px; } .icon { color: var(--quartenary-color); } `;