Changeset - b723e6390acd
[Not reviewed]
Bradley M. Kuhn - 2 years ago 2021-10-21 19:49:42
bkuhn@sfconservancy.org
Format like previous with the <p> solution

<ul> is the right HTML way to format these, but they are all too
close. Get it to look more like it did with <p>'s with CSS.
2 files changed with 7 insertions and 1 deletions:
0 comments (0 inline, 0 general)
www/conservancy/static/css/conservancy.css
Show inline comments
...
 
@@ -131,192 +131,198 @@ text-decoration: none; color: #557733;
 
/* FIXME: We should do this:          */
 
/* http://www.waypointarts.com/blog/2013/06/29/fixing-a-side-bar-while-scrolling-until-bottom */
 
.donate-sidebar {
 
  background: var(--light-green) no-repeat;
 
  position: sticky;
 
  bottom: 0;
 
  width: auto;
 
  padding: 0.5rem 1rem;
 
  margin: 2rem -0.5rem 0;
 
  border-radius: 8px 8px 0 0;
 
  border: 1px solid #90d468;
 
}
 

	
 
.donate-sidebar:hover {
 
  background: #a0d870;
 
}
 

	
 
@media screen and (min-width: 30em) {
 
  .donate-sidebar {
 
    margin: 2rem -1rem 0;
 
  }
 
}
 

	
 
p.footnote {
 
    font-size: 85%;
 
}
 

	
 
h1 { margin-top: .75em; margin-bottom: .5em; }
 
h2 { margin-top: .75em; margin-bottom: .5em; }
 
h3 { margin-top: .6em; margin-bottom: .4em; }
 

	
 
#mainContent ul, #mainContent ol { padding-left: 1.5em; }
 

	
 

	
 
.internalNavigate { width: 19%; float: right; }
 
#mainContent .internalNavigate ul { list-style-type: none; padding-left: 0; }
 
.internalNavigate ul li { margin-top: .3em; margin-bottom: .3em; }
 

	
 
/* Header */
 

	
 
body > header {
 
  /* background: linear-gradient(to top right, white, white, var(--washed-blue) 80%); */
 
  overflow: auto; /* Prevent logo top margin popping out. */
 
}
 

	
 
#conservancyheader img {
 
  max-height: 75px;
 
  width: auto;
 
}
 

	
 
@media screen and (min-width: 30em) {
 
  #conservancyheader img {
 
    max-height: 90px;
 
  }
 
}
 

	
 
/* Navigation bar */
 
#navbar-outer {
 
  background: var(--navy);
 
  position: relative;
 
  z-index: 100;
 
}
 
#navbar ul {
 
  list-style: none;
 
  text-transform: uppercase;
 
  padding: 0;
 
}
 
#navbar li {
 
  background: var(--navy);
 
  position: relative;
 
  padding-left: .25rem;
 
  padding-right: .25rem;
 
}
 
@media screen and (min-width: 30em) {
 
  #navbar li {
 
    padding-left: .5rem;
 
    padding-right: .5rem;
 
  }
 
}
 
#navbar li > a {
 
  display: inline-block;
 
  color: white;
 
  text-decoration: none;
 
  padding: 0.25rem 0.25rem 0;
 
  /* Invisible borders to keep things even. */
 
  border-top: 0.20rem solid var(--navy);  /* A little less here. */
 
  border-bottom: 0.25rem solid var(--navy);
 
}
 

	
 
@media screen and (min-width: 30em) {
 
  #navbar li > a {
 
    padding-left: .5rem;
 
    padding-right: .5rem
 
  }
 
}
 

	
 
.press-articles ul li {
 
    list-style-type: none; /* Remove bullets */
 
    padding: 0; /* Remove padding */
 
    margin: 0; /* Remove margins */
 
    margin-top: .3em; margin-bottom: .3em;
 
}
 

	
 
#navbar li a:hover, #navbar li a:focus {
 
  border-bottom: 0.25rem solid var(--light-green);
 
}
 
#navbar li { padding-bottom: 0.25rem; }
 

	
 
/* Navbar submenus */
 
#navbar li ul {
 
  display: none;
 
  z-index: 100;
 
  position: absolute;
 
  top: 100%;
 
  left: 0;
 
  min-width: 15rem;
 
  text-transform: none;
 
}
 
#navbar li ul a {
 
  font-weight: normal;
 
}
 
#navbar li:hover ul {
 
  display: block;
 
}
 
/* Right-align the second last and last sub-menus. */
 
#navbar li:nth-last-child(2) ul, #navbar li:nth-last-child(1) ul {
 
  left: auto;
 
  right: 0;
 
  text-align: right;
 
}
 

	
 
#menu-icon:active, #search-icon:active {
 
  transform: scale(1.1);
 
}
 
#navbar-outer { min-height: .5rem; }
 
#navbar.mobile {
 
  display: block;
 
  max-width: 32rem;
 
}
 
#navbar.mobile.search { display: block; }
 
#navbar.mobile li {
 
  display: block;
 
}
 
#navbar.mobile ul {
 
  padding-left: .5rem;
 
  padding-right: .5rem;
 
  display: block !important;
 
  position: relative !important;
 
  top: auto !important;
 
  left: 0 !important;
 
  right: auto !important;
 
  text-align: left !important;
 
}
 
#navbar.mobile > ul > li {
 
  padding-top: .5rem;
 
  padding-bottom: .5rem;
 
}
 
#navbar.mobile > ul > li {
 
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 
}
 
#navbar.mobile li ul {
 
  margin-left: .5rem;
 
}
 

	
 
#progressbar {
 
    height: 1.8em;
 
}
 

	
 
#progressbar .ui-widget-header {
 
    background: rgb(206, 31, 31);
 
}
 

	
 
#siteprogressbar .goalText {
 
    color: #557733;
 
    font-size: 10pt;
 
}
 
#siteprogressbar .soFarText {
 
    font-size: 10pt;
 
}
 
#siteprogressbar .progress {
 
    background: #577632;
 
}
 
@media all and (max-width: 600px) {
 
  .goalText {
 
      font-size: 8pt;
 
  }
 
  .soFarText {
 
      font-size: 8pt;
 
  }
 
}
 
#siteprogressbar .progress {
 
    background: #577632;
 
}
 
#siteprogressbar .middle-goal {
 
    background: #d0d0d0;
 
}
 

	
 
#siteprogressbar .final-goal {
www/conservancy/static/press/vizio-coverage.html
Show inline comments
 
{% extends "base_press.html" %}
 
{% block subtitle %}Press - {% endblock %}
 
{% block submenuselection %}VizioPress{% endblock %}
 
{% block content %}
 
<h1 id="VizioPress">Vizio Lawsuit Press Coverage</h1>
 

	
 
<p>Here are  articles in the press that covered <a href="/copyleft-compliance/vizio.html">our Vizio lawsuit</a>.</p>
 

	
 
<h2 id="Filing">Coverage of the <a href="/docs/software-freedom-conservancy-v-vizio-complaint-2021-10-19.pdf">Complaint</a> filing</h2>
 

	
 
<ul>
 
<ul class="press-articles">
 
<li><a href="https://www.theregister.com/2021/10/20/vizio_gpl_lawsuit/"><b>The Register</b> &mdash; &ldquo;Software Freedom Conservancy sues TV maker Vizio for GPL infringement&rdquo;</a></li>
 
<li><a href="https://lwn.net/SubscriberLink/873415/6a613fb23105d329/"><b>LWN</b> &mdash; &ldquo;Empowering users of GPL software&rdquo;</a></li>
 
<li><a href="https://www.zdnet.com/article/software-freedom-conservancy-sues-vizio-for-gpl-violations/"><b>ZDNET</b> &mdash; &ldquo;Software Freedom Conservancy sues Vizio for GPL violations&rdquo;</a></li>
 
<li><a href="https://thestack.technology/vizio-sued-open-source-gpl-copyleft/"><b>The Stack</b> &mdash; &ldquo;TV maker Vizio sued for alleged copyleft violations — after failing to disclose source code&rdquo;</a></li>
 
<li><a href="https://www.reuters.com/legal/transactional/vizio-sued-by-nonprofit-share-code-open-source-software-2021-10-20/"><b>Reuters</b> - &ldquo;Vizio sued by nonprofit to share code for open-source software&rdquo;</a></li>
 
<li><a href="https://www.lawyer-monthly.com/2021/10/software-freedom-conservancy-sues-vizio-over-source-code/"><b>Lawyer Monthly</b> &mdash; &ldquo;Software Freedom Conservancy Sues Vizio Over Source Code&rdquo;</a></li>
 
<li><a href="https://finance.yahoo.com/news/software-freedom-conservancy-files-repair-120000898.html"><b>Yahoo! Finance</b> &mdash; &ldquo;Software Freedom Conservancy files right-to-repair lawsuit against California TV manufacturer Vizio Inc. for alleged GPL violations&rdquo;</a></li>
 
<li><a href="https://www.prweb.com/releases/software_freedom_conservancy_files_right_to_repair_lawsuit_against_california_tv_manufacturer_vizio_inc_for_alleged_gpl_violations/prweb18275065.htm"><b>PR Web</b> &mdash; &ldquo;Software Freedom Conservancy files right-to-repair lawsuit against California TV manufacturer Vizio Inc. for alleged GPL violations&rdquo;</a></li>
 
{% endblock %}
0 comments (0 inline, 0 general)