Skip to content

Commit

Permalink
background changed
Browse files Browse the repository at this point in the history
  • Loading branch information
r-rishabh-j committed Jul 14, 2021
1 parent 406a918 commit 7b79c83
Show file tree
Hide file tree
Showing 16 changed files with 93 additions and 17 deletions.
3 changes: 1 addition & 2 deletions css/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

#about-text{
font-family:'Roboto', sans-serif;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
margin-bottom:1.54em;
line-height: 1.8;
text-align:justify;
Expand All @@ -13,7 +13,6 @@
.about_heading{
margin-top:1.4em;
color:black;
/* color:black; */
text-align:center;

}
63 changes: 60 additions & 3 deletions css/nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
padding:25px;
vertical-align:center;
font-size:1.3em;
font-family: 'Roboto Slab', serif;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.navbar li a:link{
Expand Down Expand Up @@ -48,6 +48,63 @@
border-radius:50%;
}

body{
background-size:cover;
@keyframes move-twink-back {
from {background-position:0 0;}
to {background-position:-10000px 5000px;}
}
@-webkit-keyframes move-twink-back {
from {background-position:0 0;}
to {background-position:-10000px 5000px;}
}
@-moz-keyframes move-twink-back {
from {background-position:0 0;}
to {background-position:-10000px 5000px;}
}
@-ms-keyframes move-twink-back {
from {background-position:0 0;}
to {background-position:-10000px 5000px;}
}

/* @keyframes move-clouds-back {
from {background-position:0 0;}
to {background-position:10000px 0;}
}
@-webkit-keyframes move-clouds-back {
from {background-position:0 0;}
to {background-position:10000px 0;}
}
@-moz-keyframes move-clouds-back {
from {background-position:0 0;}
to {background-position:10000px 0;}
}
@-ms-keyframes move-clouds-back {
from {background-position: 0;}
to {background-position:10000px 0;}
} */

.stars, .twinkling{
position: absolute;
top:0;
left:0;
right:0;
bottom:0;
width:100%;
height:100%;
display:block;
}

.stars {
background:#000 url(../images/stars.png) repeat top center;
z-index:-10;
}

.twinkling{
background:transparent url(../images/twinkling.png) repeat top center;
z-index:-9;

-moz-animation:move-twink-back 200s linear infinite;
-ms-animation:move-twink-back 200s linear infinite;
-o-animation:move-twink-back 200s linear infinite;
-webkit-animation:move-twink-back 200s linear infinite;
animation:move-twink-back 200s linear infinite;
}
2 changes: 1 addition & 1 deletion css/projects.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ li::marker{
padding-bottom: 10px;
padding-top: 5px;
margin-bottom: 20px;
font-family: 'Roboto';
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
10 changes: 6 additions & 4 deletions css/team.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
margin-top:1.4em;
color:black;
text-align:center;

/* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}
.representatives_heading{
text-align:center;
font-family: 'Roboto', sans-serif;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
margin-top:1.4em;
margin-bottom:1em;
font-size:2em;
Expand Down Expand Up @@ -35,13 +35,15 @@
}
.profile_name{
text-align:center;
font-family: 'Roboto Slab', serif;
/* font-family: 'Roboto Slab', serif; */
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 1.2em;
color:grey;
}
.profile_info{
text-align:center;
font-family:'Roboto',serif;
/* font-family:'Roboto',serif; */
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size:1em;
color:grey;
}
Expand Down
4 changes: 3 additions & 1 deletion html/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
<link rel="shortcut icon" type="image/x-icon" href="../images/robotics_logo_icon.png" />
</head>

<body background="../images/background2.jpg">
<body>
<div class="stars"></div>
<div class="twinkling"></div>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
Expand Down
4 changes: 3 additions & 1 deletion html/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
<link rel="shortcut icon" type="image/x-icon" href="../images/robotics_logo_icon.png" />
</head>

<body background="../images/background2.jpg">
<body>
<div class="stars"></div>
<div class="twinkling"></div>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
Expand Down
4 changes: 3 additions & 1 deletion html/contact_thanks.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
<link rel="shortcut icon" type="image/x-icon" href="../images/robotics_logo_icon.png" />
</head>

<body background="../images/background2.jpg">
<body>
<div class="stars"></div>
<div class="twinkling"></div>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
Expand Down
5 changes: 4 additions & 1 deletion html/forum.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@
</script>
</head>

<body background="../images/background2.jpg" onload="content()">
<!-- <body background="../images/background2.jpg" onload="content()"> -->
<body onload="content()">
<div class="stars"></div>
<div class="twinkling"></div>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
Expand Down
7 changes: 6 additions & 1 deletion html/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@
<link rel="shortcut icon" type="image/x-icon" href="../images/robotics_logo_icon.png" />
</head>

<body background="../images/background2.jpg">

<!-- <body background="../images/background2.jpg"> -->
<body>
<div class="stars"></div>
<div class="twinkling"></div>
<!-- <div class="clouds"></div> -->
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
Expand Down
4 changes: 3 additions & 1 deletion html/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@

</head>

<body background="../images/background2.jpg" onload="content()">
<body onload="content()">
<div class="stars"></div>
<div class="twinkling"></div>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
Expand Down
4 changes: 3 additions & 1 deletion html/team.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
<link rel="shortcut icon" type="image/x-icon" href="../images/robotics_logo_icon.png" />
</head>

<body background="../images/background2.jpg">
<body>
<div class="stars"></div>
<div class="twinkling"></div>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
Expand Down
Binary file added images/background5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/images.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/images2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/stars.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/twinkling.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7b79c83

Please sign in to comment.