-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
.landmark h3 { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.landmark [role=tabpanel] h3 { | ||
Check failure on line 5 in content/patterns/landmarks/css/landmarks-pattern.css GitHub Actions / lint-cssStylelint problem
|
||
margin: 0; | ||
padding: 0; | ||
margin-top: 1em; | ||
} | ||
Check failure on line 9 in content/patterns/landmarks/css/landmarks-pattern.css GitHub Actions / lint-cssStylelint problem
|
||
|
||
[role=tabpanel] pre { | ||
Check failure on line 11 in content/patterns/landmarks/css/landmarks-pattern.css GitHub Actions / lint-cssStylelint problem
|
||
margin: 0; | ||
padding: 0; | ||
} | ||
pre code.hljs { | ||
background-color: #eee; | ||
} | ||
Check failure on line 17 in content/patterns/landmarks/css/landmarks-pattern.css GitHub Actions / lint-cssStylelint problem
|
||
|
||
fieldset { | ||
margin-top: 1em; | ||
max-width: 15em; | ||
} | ||
|
||
label { | ||
margin-top: 0.5em; | ||
display: block; | ||
} | ||
|
||
input[type=text] { | ||
Check failure on line 29 in content/patterns/landmarks/css/landmarks-pattern.css GitHub Actions / lint-cssStylelint problem
|
||
margin: 0; | ||
padding: 0; | ||
display: block; | ||
} | ||
|
||
input[type=submit] { | ||
Check failure on line 35 in content/patterns/landmarks/css/landmarks-pattern.css GitHub Actions / lint-cssStylelint problem
|
||
margin-top: 1em; | ||
display: block; | ||
} | ||
|
||
#at figure { | ||
margin: 0; | ||
padding: 0; | ||
margin-top: 2em; | ||
border: 2px solid #005a9c; | ||
border-radius: 5px; | ||
background-color: #ddd; | ||
width: auto; | ||
max-width: 760px; | ||
} | ||
|
||
#at figure figcaption { | ||
margin: 0; | ||
padding: 0.5em; | ||
background-color: #ddd; | ||
text-align: center; | ||
font-weight: bold; | ||
font-size: 110%; | ||
} | ||
|
||
#at figure img { | ||
margin: 0; | ||
padding: 2px; | ||
border: none; | ||
width: auto; | ||
} | ||
|