Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021_dev-profile
/
dev-profile
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-06-04 09:26:10 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6ada939fa6b3410a45e314c90f694e7500898d70
6ada939f
1 parent
59f811fa
CSS update for join/log in
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
72 additions
and
3 deletions
src/client/scss/screens/join.scss
src/client/scss/screens/userDetail.scss
src/client/scss/styles.scss
src/views/join.pug
src/views/userDetail.pug
src/client/scss/screens/join.scss
0 → 100644
View file @
6ada939
// i.fas.fa-location-arrow {
// display: flex;
// justify-content: center;
// align-items: center;
// width: 30px;
// height: auto;
// object-fit: cover;
// }
h3
{
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
margin-top
:
50px
;
font-weight
:
700
;
font-family
:
"Roboto"
,
sans-serif
;
font-size
:
30px
;
opacity
:
0
.8
;
}
a
{
.login-github
{
display
:
flex
;
justify-content
:
center
;
border-radius
:
25px
;
align-items
:
center
;
margin-top
:
30px
;
height
:
80px
;
background-color
:
rgb
(
93
,
32
,
167
);
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0
.11
)
,
0
2px
2px
rgba
(
0
,
0
,
0
,
0
.11
)
,
0
4px
4px
rgba
(
0
,
0
,
0
,
0
.11
)
,
0
6px
8px
rgba
(
0
,
0
,
0
,
0
.11
)
,
0
8px
16px
rgba
(
0
,
0
,
0
,
0
.11
);
font-family
:
"Raleway"
,
sans-serif
;
color
:
white
;
font-size
:
50px
;
font-weight
:
500
;
font-family
:
"Roboto"
,
sans-serif
;
font-size
:
25px
;
}
}
src/client/scss/screens/userDetail.scss
View file @
6ada939
.user-quote
{
margin-top
:
20px
;
h2
{
font-size
:
30px
;
font-family
:
"Vollkorn"
,
serif
;
margin
:
15px
0px
;
}
h3
{
font-size
:
15px
;
display
:
flex
;
margin-right
:
100px
;
flex-direction
:
row-reverse
;
font-size
:
20px
;
opacity
:
0
.5
;
font-family
:
"Vollkorn"
,
serif
;
}
}
label
{
font-family
:
"Raleway"
,
sans-serif
;
font-size
:
13px
;
font-weight
:
bold
;
padding
:
10px
;
}
.user-profile
{
.user-profile__column
{
img
{
width
:
100px
;
height
:
100px
;
object-fit
:
cover
;
}
.user-profile__link
{
display
:
flex
;
font-family
:
"Raleway"
,
sans-serif
;
flex-wrap
:
wrap
;
font-weight
:
bold
;
width
:
5px
;
color
:
rgb
(
92
,
92
,
221
);
}
}
}
...
...
src/client/scss/styles.scss
View file @
6ada939
...
...
@@ -10,6 +10,7 @@
@import
"./screens/home.scss"
;
@import
"./screens/editProfile.scss"
;
@import
"./screens/userDetail.scss"
;
@import
"./screens/join.scss"
;
// Defaults
...
...
src/views/join.pug
View file @
6ada939
...
...
@@ -2,7 +2,7 @@ extends layouts/main
block content
i.fas.fa-location-arrow
h3
Start with GitHub
!
h3
Join Us
!
a(href="/auth/github")
.login-github
i.fab.fa-github
...
...
src/views/userDetail.pug
View file @
6ada939
...
...
@@ -4,12 +4,13 @@ block content
.user-quote
h2=quote
h3=author
hr
.user-profile
.user-profile__column
img(src=`/${user.avatarUrl}`)
.user-profile__link
a(href=user.githubUrl target="_blank") Github
a(href=user.githubUrl target="_blank") Github
a(href=`//${user.blogUrl}` target="_blank") Blog
.user-profile__column
.user-profile__info
...
...
Please
register
or
login
to post a comment