Skip to content

Commit

Permalink
save styling changes
Browse files Browse the repository at this point in the history
  • Loading branch information
heisenburger committed Nov 8, 2023
1 parent 558a577 commit 383fc6a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

{% include head.html %}

<body onclick="swapPhrase(bank)">
<body>

<div class="crtlines"></div>
<div class="screen">
Expand Down
4 changes: 2 additions & 2 deletions _sass/_animations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
@keyframes bump {
$steps: 20;
@for $i from 0 through $steps {
$rand: random(8);
$rand: random(2);
#{percentage($i*(1/$steps))} {
transform: translateY($rand+px);
}
Expand All @@ -83,7 +83,7 @@

@keyframes whoa {
0% { transform: translateY( 0%); }
5% { transform: translateY(-20%); }
5% { transform: translateY(-10%); }
10% { transform: translateY( 0%); }
}

Expand Down
6 changes: 3 additions & 3 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ body {
width: calc(100vw - 10vmin);
height: calc(100vh - 10vmin);
border-radius: $text-size;
filter: blur(1px);
filter: blur(0.75px);
overflow: hidden;
background-color: var(--screen-bg);
background: radial-gradient(circle, var(--screen-crt-glow) 0%, var(--screen-bg) 100%);
}

.textwrap {
text-align: center;
padding: 10vmin;
width: 100%;
height: 100%;
animation: flicker 5s infinite,
Expand Down Expand Up @@ -89,7 +89,7 @@ body {
transparent 0.1rem,
rgba(0,0,0,.2) 0.05rem);
background-size: 1px 4px;
z-index: 1;
z-index: 0;
animation: scan 50s infinite,
twitch 3s infinite;
}
13 changes: 12 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,20 @@
}
</style>

<h1>chrome.security</h1>

<p>The Chromium security team aims to provide Chrome and Chrome OS users with the most secure platform to navigate the web, and just generally make the Internet a safer place to hang out. We work on solutions for the biggest user / ux security problems, drive secure architecture design and implementation projects for the Chromium platform, find and help fix security bugs, help developers to create more secure apps, and act as a general security consulting / review group for the larger Chromium project.</p>

<h2>Latest posts</h2>

<h3>An Update on the Lock Icon</h3>
<p>Tuesday, May 2, 2023</p>
<p>Browsers have shown a lock icon when a site loads over HTTPS since the early versions of Netscape in the 1990s. For the last decade, Chrome participated in a major initiative to increase HTTPS adoption on the web, and to help make the web secure by default. As late as 2013, only 14% of the Alexa Top 1M sites supported HTTPS. Today, however, HTTPS has become the norm and over 95% of page loads in Chrome on Windows are over a secure channel using HTTPS. This is great news for the ecosystem; it also creates an opportunity to re-evaluate how we signal security protections in the browser. In particular, the lock icon.</p>
<a href="https://blog.chromium.org/2023/05/an-update-on-lock-icon.html">Keep reading</a>
<!--
<div class="tvtext r">chrome security</div>
<div class="tvtext g">chrome security</div>
<div class="tvtext b">chrome security</div>
<div class="tvtext w">chrome security</div>
<div class="tvtext w-l">chrome security</div>
<div class="tvtext w-r">chrome security</div>
<div class="tvtext w-r">chrome security</div> -->

0 comments on commit 383fc6a

Please sign in to comment.