Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed square size in windows #17

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
19 changes: 15 additions & 4 deletions Windows-Chrome-DarkMode/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,25 @@ body {
#minimize {
color: white;
font-size: 12px;
padding: 9px 15px 7px 15px;
padding: 9px 16px 5px 16px;
position: relative;
top: 5px;
}

#square {
color: white;
font-size: 22px;
padding: 0px 15px 5px 15px;
font-size: 16px;
padding: 5px 15px 5px 15px;
position: relative;
top: 5px;
}

#exit {
color: white;
font-size: 15px;
padding: 7px 17px 7px 17px;
padding: 6px 17px 5px 17px;
position: relative;
top: 5px;
}

#url-bar {
Expand Down Expand Up @@ -104,4 +110,9 @@ body {
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
height: 759px; /* title bar height + content height */
width: 40%;

/* 화면 중앙쯤으로 이동했으면 좋을듯 */
position: relative;
top: 5%;
left: 30%;
}
19 changes: 15 additions & 4 deletions Windows-Chrome-LightMode/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,25 @@ body {
#minimize {
color: black;
font-size: 12px;
padding: 9px 15px 7px 15px;
padding: 9px 16px 5px 16px;
position: relative;
top: 5px;
}

#square {
color: black;
font-size: 22px;
padding: 0px 15px 5px 15px;
font-size: 16px;
padding: 5px 15px 5px 15px;
position: relative;
top: 5px;
}

#exit {
color: black;
font-size: 15px;
padding: 7px 17px 7px 17px;
padding: 6px 17px 5px 17px;
position: relative;
top: 5px;
}

#url-bar {
Expand Down Expand Up @@ -104,4 +110,9 @@ body {
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
height: 759px; /* title bar height + content height */
width: 40%;

/* 화면 중앙쯤으로 이동했으면 좋을듯 */
position: relative;
top: 5%;
left: 30%;
}
10 changes: 7 additions & 3 deletions Windows-DarkMode-Delay/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,17 @@ body {
#minimize {
color: white;
font-size: 12px;
padding: 9px 15px 7px 15px;
padding: 9px 16px 5px 16px;
position: relative;
top: 5px;
}

#square {
color: white;
font-size: 22px;
padding: 0px 15px 5px 15px;
font-size: 16px;
padding: 5px 15px 5px 15px;
position: relative;
top: 5px;
}

#exit {
Expand Down