Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions great-idea-website/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,13 @@ h1, h2, h3, h4, h5 {
header nav{
display: inline-block;
}

header nav a{
color: gray;
color: #3FF06C;
margin: 0px 20px;
padding: 20px;
text-decoration: none;
background: #598EA0;
}

#navlogo{
Expand Down Expand Up @@ -110,9 +112,18 @@ header nav a{
border: 1px solid black;
color: black;
}
@keyframes link{
0%{background:black;}
25%{background:darkgreen;}
50%{background: darkblue;}
100%{background:blueviolet }
}
#button1:hover{
background-color: black;
color: white;
font-size: 75%;
animation-name: link;
animation-duration: 2s;
animation-iteration-count: infinite;
}
#title{
padding: 0px;
Expand All @@ -129,13 +140,15 @@ header nav a{
display: inline-block;
text-align: left;
max-width: 49%;
font-family: 'Livvic', sans-serif;

}
.content2{
display: inline-block;
text-align: left;
max-width: 31%;
margin: 25px 0px 25px 0px;
font-family: 'Livvic', sans-serif;
}
.content img{
width: 100%;
Expand Down
4 changes: 3 additions & 1 deletion great-idea-website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>

<style>
@import url('https://fonts.googleapis.com/css?family=Livvic&display=swap');
</style>
<body class = "container">
<header id = "navbar">
<nav id="navigation">
Expand Down