Toggle navigation
Toggle navigation
This project
Loading...
Sign in
HyeonJun Jeon
/
Extended-Calendar
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
HyeonJun Jeon
2022-05-27 15:25:14 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ede7d1e796295bd5a0120a4b11ccc63e6544b939
ede7d1e7
1 parent
945cc99e
[Style] Change button design
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
0 deletions
src/styles/App.css
src/styles/Header.css
src/styles/Side.css
src/styles/App.css
View file @
ede7d1e
...
...
@@ -18,3 +18,31 @@ h2 {
flex
:
1
;
display
:
flex
;
}
button
{
cursor
:
pointer
;
background-color
:
white
;
color
:
black
;
border
:
solid
thin
;
border-color
:
lavender
;
border-radius
:
3px
;
}
button
{
-webkit-transition-duration
:
0.4s
;
/* Safari */
transition-duration
:
0.4s
;
}
button
:hover:not
(
:disabled
)
{
background-color
:
rgba
(
39
,
197
,
250
,
0.334
);
color
:
white
;
}
button
:active:not
(
:disabled
)
{
background-color
:
rgba
(
39
,
197
,
250
,
0.548
);
}
button
:disabled
{
cursor
:
auto
;
color
:
rgb
(
209
,
209
,
209
);
}
...
...
src/styles/Header.css
View file @
ede7d1e
...
...
@@ -26,6 +26,7 @@ header {
.hcb
{
height
:
34px
;
margin
:
10px
;
font-size
:
medium
;
}
.hcd
{
...
...
@@ -33,6 +34,7 @@ header {
}
.hcd
>
button
{
border-radius
:
0
;
font-size
:
large
;
}
...
...
@@ -47,6 +49,7 @@ header {
}
.hrd
>
button
{
border-radius
:
0
;
padding
:
8px
14px
8px
14px
;
font-size
:
medium
;
}
...
...
src/styles/Side.css
View file @
ede7d1e
...
...
@@ -11,9 +11,14 @@ aside {
}
.ssc
{
cursor
:
pointer
;
height
:
15px
;
width
:
15px
;
margin
:
5px
10px
5px
5px
;
border
:
solid
thin
grey
;
border-radius
:
3px
;
}
.SideSubject
>
span
{
line-height
:
25px
;
}
...
...
Please
register
or
login
to post a comment