/** * A collection of popular layouts and patterns made with CSS (https://csslayout.io) * (c) 2019 - 2021 Nguyen Huu Phuoc */ import * as React from 'react'; import { Helmet } from 'react-helmet'; import './dropcap.css'; import DetailsLayout from '../../layouts/DetailsLayout'; import BrowserFrame from '../../placeholders/BrowserFrame'; import Pattern from '../../constants/Pattern'; const Details: React.FC<{}> = () => { return (
...
`} css={` /* Styles for the first letter */ .container:first-letter { /* Display at the left */ float: left; line-height: 1; /* Spacing */ margin: 0 8px 0 0; padding: 0 8px; /* Optional */ font-size: 64px; font-weight: 700; } `} >
Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language like HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.
); }; export default Details;