Will be awesome one day, I guarantee you
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ςεφ

Cldprv 9f09913a 5cb63e98

+12 -2
+1 -1
index.html
··· 4 4 <meta charset="UTF-8"> 5 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 6 <title>Hmmm Yup? I'm here!</title> 7 - <link rel="stylesheet" href="styles.css"> 7 + <link rel="stylesheet" href="style.css"> 8 8 </head> 9 9 <body> 10 10 <div id="content">
+11 -1
style.css
··· 1 1 #content { 2 - transition: transform 0.5s ease; 2 + transition: transform; 3 3 } 4 4 5 5 #prevention { 6 6 display: none; 7 7 color: red; 8 + } 9 + 10 + h1::after, h2::after { 11 + content: ''; 12 + display: block; 13 + height: 2px; 14 + background-color: blue; 15 + margin-top: 5px; 16 + border-radius: 5px; 17 + 8 18 }