質問するログイン新規登録

質問編集履歴

1

html,cssのコードを追記しました。

2017/01/05 08:21

投稿

_ryu-akashi.49
_ryu-akashi.49

スコア10

title CHANGED
File without changes
body CHANGED
@@ -4,9 +4,38 @@
4
4
  ご回答よろしくおねがいいたします。
5
5
 
6
6
  ```html
7
- <section id="top">…</section>
7
+ <section id="top">
8
+ <header>
9
+ <ul>
10
+ <li id="logo "><a href="” target="_blank"><img src="image/logo_b.png"></a></li>
11
+ <li class="jump"><a href="#question" id="q">お問合わせ</a></li>
12
+ <li class="jump"><a href="#application">募集要項</a></li>
13
+ <li class="jump"><a href="#entryPeriod">プレエントリー期間</a></li>
14
+ <li class="jump"><a href="#about">概要</a></li>
15
+ </ul>
16
+ </header>
17
+ <div id="top_msg">
18
+ <p id="subtitle">ああああああああああ</p>
19
+ <h1>ああああああああ<br>あああああああああ</h1>
20
+ <h4>サブキャッチコピーサブキャッチコピーサブキャッチコピーサブキャッチコピーサブキャッチコピーサブキャッチコピーサブキャッチコピー</h4>
21
+ <div class="triangle"></div> <!--スクロールピクトグラム-->
22
+ </div>
23
+ </section>
24
+
8
25
  ```
9
26
  ```css
27
+ body{
28
+ font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",helvetica,"Open Sans", sans-serif; font-weight: 500;
29
+ margin: 0;
30
+ box-sizing: border-box;
31
+ width: 100vw;
32
+ }
33
+
34
+ section{
35
+ text-align: center;
36
+ position: relative;
37
+ }
38
+
10
39
  #top{
11
40
  height: 100vh;
12
41
  background-image: url(image/background_top.png);
@@ -15,6 +44,57 @@
15
44
  background-position: center center;
16
45
  background-size: cover;
17
46
  }
47
+ header{
48
+ top: 0;
49
+ padding: 0 2%;
50
+ background-color: rgba(255,255,255,1.0);
51
+ }
52
+ header li{
53
+ list-style: none;
54
+ display: inline-block;
55
+ float: right;
56
+ margin-left: 45px;
57
+ }
58
+ header ul{
59
+ margin-top: 0;
60
+ padding: 25px 0;
61
+ height: 1.3em;
62
+ /*border-bottom: 1px solid #fff;*/
63
+ }
64
+ header a{
65
+ text-decoration: none;
66
+ color: #000;
67
+ }
68
+ #logo{
69
+ float: left;
70
+ margin-left: 0;
71
+ }
72
+ #logo img{
73
+ width: 130px;
74
+ }
75
+ #top_msg{
76
+ padding: 0 250px;
77
+ margin-top: 90px;
78
+ text-align: left;
79
+ color: white;
80
+ }
81
+ #subtitle{
82
+ margin-bottom: 20px;
83
+ }
84
+ #top_msg h1{
85
+ font-size: 50px;
86
+ letter-spacing: 5.5px;
87
+ text-shadow: 0.5px 0.5px 7px #999999;
88
+ }
89
+ .triangle{
90
+ margin-top: 100px;
91
+ margin: 60px auto;
92
+ width: 0;
93
+ height: 0;
94
+ border: 20px solid transparent;
95
+ border-top: 20px solid #fff;
96
+ }
97
+
18
98
  ```
19
99
 
20
100
  ###試したこと