Skip to content

Commit

Permalink
more small tweaks to some elements
Browse files Browse the repository at this point in the history
  • Loading branch information
notAperson535 committed May 14, 2022
1 parent 867885b commit 837961f
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 7 deletions.
26 changes: 21 additions & 5 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ body{

.actioncenter{
display: flex;
margin-right: 5px;
margin: 0px 5px;
padding-top: 10px;
padding-bottom: 10px;;
}
Expand All @@ -83,6 +83,22 @@ body{
border-radius: 3px;
}

.moreapps{
display: flex;
align-items: center;
height: 38px;
}

.moreapps img{
margin: 0px 5px;
width: 12px;
}

.moreapps:hover{
background-color: white;
border-radius: 3px;
}

#clock{
margin: 0px;
}
Expand Down Expand Up @@ -114,7 +130,7 @@ body{
}

.taskbaricons{
margin: 0px 9px;
margin: 0px 9.5px;
}

.taskbariconhighlight{
Expand All @@ -129,7 +145,7 @@ body{
}

.taskbaricons:hover{
margin: -7px 2px;
margin: -7px 2.5px;
border: solid 7px white;
backdrop-filter: blur(20px);
background-color: rgba(255,255,255,.80);
Expand Down Expand Up @@ -240,8 +256,8 @@ body{
.app {
position: fixed;
box-shadow: 1px 10px 50px #969696;
border-radius: 5px;
border: 1px solid #B4B4B4;
border-radius: 10px;
border: 1.5px solid #B4B4B4;
overflow: hidden;
width: 0%;
height: 0%;
Expand Down
1 change: 1 addition & 0 deletions img/moreapps.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@

<div class="taskbariconsright">

<div class="moreapps">
<img src="img/moreapps.svg">
</div>

<div class="actioncenter">
<img src="img/wifi.png">
<img src="img/volume.png">
Expand Down
2 changes: 1 addition & 1 deletion scripts/appcreater.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function goToPage(pageUrl)
}

function roundedcorners(){
app.style.borderRadius = "5px"
app.style.borderRadius = "10px"
}

function active(){
Expand Down
2 changes: 1 addition & 1 deletion scripts/taskbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ window.addEventListener('mouseup', function(e) {
});

window.addEventListener('mouseup', function(e) {
if (!event.target.closest(".searchmenu") && !event.target.closest(".searchtbutton")){
if (!event.target.closest(".searchmenu") && !event.target.closest(".searchbutton")){
searchmenu.style.bottom = "-655px";
}
});
Expand Down

0 comments on commit 837961f

Please sign in to comment.