Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add styling to blockquotes in markdown cells #810

Closed
rgbkrk opened this issue Sep 20, 2016 · 2 comments
Closed

Add styling to blockquotes in markdown cells #810

rgbkrk opened this issue Sep 20, 2016 · 2 comments

Comments

@rgbkrk
Copy link
Member

rgbkrk commented Sep 20, 2016

There's currently no styling to blockquotes, which makes it hard to tell if it's a paragraph vs. a quote.

screen shot 2016-09-20 at 3 26 28 pm

Tempted to make an overly styled version:

screen shot 2016-09-20 at 3 24 43 pm

CSS:

blockquote{
  padding: .75em .5em .75em 1em;
  background: white;
  border-left: 0.5em solid #DDD;
}

blockquote::before {
  display: block;
  height: 0;
  content: "“";
  margin-left: -.95em;
  font: italic 400%/1 Open Serif,Georgia,"Times New Roman", serif;
  color: #999;
}

/* for nested paragraphs in block quotes */
blockquote p {
  display: inline;
}
@jdetle
Copy link
Member

jdetle commented Sep 20, 2016

Going to a coffee and code session next monday! I'll play it cool and see if anyone wants to tackle this.

@captainsafia captainsafia changed the title Blockquote styling Add styling to blockquotes in markdown cells Sep 28, 2016
@lock
Copy link

lock bot commented Apr 3, 2018

This thread has been automatically locked because it has not had recent activity. Please open a new issue for related bugs and link to relevant comments in this thread.

@lock lock bot locked and limited conversation to collaborators Apr 3, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants