-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* cssをstyle.cssに集約 * tmp * Merge pull request #2 from louiscnovel2/patch-1 style.cssの作成 * コンポーネント別のcssをやめてstyle.cssに一本化 * 修正漏れのstyle in componentを削除
- Loading branch information
Showing
6 changed files
with
106 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
.container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.container > .center { | ||
flex: 700px; | ||
} | ||
|
||
.container > .left, .right { | ||
flex: 0px; | ||
} | ||
|
||
.to-right { | ||
width: 100%; | ||
display: flex; | ||
justify-content: end; | ||
} | ||
|
||
/* Sign-in form */ | ||
form[name=signin] { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
row-gap: 0.5em; | ||
} | ||
form[name=signin] > input, label { | ||
width: 30em; | ||
} | ||
|
||
form[name=signin] > input[type="submit" i] { | ||
border-color: #00acee; | ||
background-color: #00acee; | ||
border-radius: 20px; | ||
padding:5px 15px 5px 15px; | ||
color: #FFFFFF; | ||
} | ||
|
||
/* post message form */ | ||
form[name=post] { | ||
margin-top: 20px; | ||
margin-bottom: 20px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
/* Post Button Design */ | ||
form[name=post] input[type="submit" i]{ | ||
width: 10em; | ||
border-color: #00acee; | ||
background-color: #00acee; | ||
border-radius: 20px; | ||
padding:5px 15px 5px 15px; | ||
color: #FFFFFF; | ||
} | ||
|
||
form[name=post] input[type="submit" i]:hover{ | ||
background-color: #0095d6; | ||
border-color: #0095d6; | ||
} | ||
|
||
/* Textarea Design */ | ||
form[name=post] > textarea{ | ||
width: 100%; | ||
height: 100px; | ||
font-size:17px; | ||
margin: 0px 0px 20px 0px; | ||
padding:17px 15px 17px 15px; | ||
border-radius: 20px; | ||
} | ||
|
||
/* Timeline messages */ | ||
.timeline { | ||
margin-top: 1.5em; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
row-gap: 0.5em; | ||
} | ||
|
||
/* Refresh Button Design */ | ||
.refresh-button { | ||
width: 8em; | ||
border-color: #6A5ACD; | ||
background-color: #6A5ACD; | ||
border-radius: 20px; | ||
padding:5px 15px 5px 15px; | ||
color: #FFFFFF; | ||
} | ||
|
||
.post { | ||
width: 100%; | ||
border-top-style: solid; | ||
border-color: gray; | ||
border-top-width: 1px; | ||
padding: 0.5em; | ||
} | ||
|
||
.post > .name { | ||
margin-bottom: 0.5em; | ||
font-weight: bold; | ||
} | ||
.post > .message { | ||
margin-left: 1em; | ||
} |