Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김명주
/
kartrider
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
김명주
2021-11-14 18:34:00 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f472850d453f9096669e0f6054c22f4ef54e19fd
f472850d
1 parent
fd74311f
Add design element(css)
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
views/game_home.css
views/game_home.css
0 → 100644
View file @
f472850
div
{
width
:
500px
;
height
:
700px
;
margin
:
0
auto
;
display
:
block
;
background-color
:
white
;
}
#tex1
{
font-family
:
'Nanum Gothic'
;
font-size
:
80px
;
font-weight
:
bold
;
}
#tex2
{
font-family
:
'Nanum Gothic'
;
font-size
:
30px
;
font-weight
:
bold
;
}
#btn
{
position
:
relative
;
top
:
40%
;
width
:
100%
;
height
:
12%
;
font-family
:
'Nanum Gothic'
;
font-size
:
large
;
font-weight
:
bold
;
color
:
white
;
background-color
:
black
;
text-align
:
center
;
border-radius
:
12px
;
}
.box
{
animation
:
fade-in
0.8s
cubic-bezier
(
0.390
,
0.575
,
0.565
,
1.000
)
both
;
}
@keyframes
fade-in
{
0
%
{
opacity
:
0
;
}
100
%
{
opacity
:
1
;
}
}
@keyframes
spin
{
100
%
{
transform
:
rotate
(
360deg
);
}
}
.spinner
{
display
:
inline-block
;
width
:
50px
;
height
:
50px
;
border
:
5px
solid
black
;
border-color
:
black
transparent
transparent
;
border-radius
:
50%
;
animation
:
spin
1s
linear
infinite
;
}
Please
register
or
login
to post a comment