0% found this document useful (0 votes)
1 views

style.css_4

The document is a CSS stylesheet that imports Google Fonts and sets various styles for HTML elements. It defines font sizes, list styles, and text formatting for headings, lists, and definitions. Additionally, it includes custom styles for nested lists and a counter style for country flags.

Uploaded by

liceredump
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views

style.css_4

The document is a CSS stylesheet that imports Google Fonts and sets various styles for HTML elements. It defines font sizes, list styles, and text formatting for headings, lists, and definitions. Additionally, it includes custom styles for nested lists and a counter style for country flags.

Uploaded by

liceredump
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

style.

css

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Noto+Sans:[email protected]&display=swap');

html {
font-size: 20px;
}

h1 {
font-family: 'Dancing Script', cursive;
font-size: 5rem;
text-transform: capitalize;
text-align: center;
}

ul {
list-style-type: square;
}

body > ol {
list-style-type: lower-greek;
}

dt {
font-weight: bolder;
font-variant: small-caps;
}

dd {
font-style: italic;
}

body > ol > li {


font-size: 2rem;
}

li li {
font-size: 1rem;
}

.li-title > ol > li::first-letter{


font-size: 4rem;
color: crimson;
}

@counter-style country-flags {
system: fixed;
symbols: ;
suffix: " ";
}

.li-title:last-child li{
list-style-type: country-flags;
border-left: 3px dashed aquamarine;
list-style-position: inside;
}

You might also like