diff --git a/index.html b/index.html index aa60ac3..9cceb0b 100644 --- a/index.html +++ b/index.html @@ -108,6 +108,35 @@ +
+
+
+

Články

+

Zde jsou odkazy na články, ve kterých byl projekt zmíněn.

+
+ +
+
+ diff --git a/style.css b/style.css index aede998..c4add50 100644 --- a/style.css +++ b/style.css @@ -94,7 +94,7 @@ main .team h2 { main .team .list { display: grid; grid-template-columns: repeat(4, 1fr); - column-gap: 2em; + grid-column-gap: 2em; } main .team figure { background-color: #fff; @@ -108,3 +108,23 @@ main .team figure label { font-weight: bold; } +main .articles .header { + display: grid; + grid-template-columns: 1fr 4fr; + align-items: baseline; + margin-bottom: 4em; + border-bottom: 1px solid #324c9c; +} +main .articles .list { + display: grid; + grid-template-columns: repeat(2, 1fr); + grid-column-gap: 2em; + grid-row-gap: 2em; +} +main .articles .list article a { + color: inherit; + text-decoration: none; + cursor: pointer; +} +main .articles .list article:hover h3 { text-decoration: underline } +