質問編集履歴

1

修正されたため、内容に価値がなくなりました。

2015/08/31 13:33

投稿

cheeeeeeese
cheeeeeeese

スコア179

test CHANGED
File without changes
test CHANGED
@@ -1,46 +1,4 @@
1
1
  皆様、質問がございます。よろしくお願い申し上げます。
2
-
3
-
4
-
5
- Cloud9の参考URL
6
-
7
- https://first-projects-rudiments.c9.io/?_c9_id=livepreview0&_c9_host=https://ide.c9.io#
8
-
9
-
10
-
11
- 参考URLのサイトにて、ヘッダーの上にスペースができている状態を修正したいと考えています。
12
-
13
-
14
-
15
- つまり、ヘッダーのスペースがあるのがおかしいと感じるためそれを無くしたいのです。
16
-
17
-
18
-
19
- よろしくお願い申し上げます。
20
-
21
-
22
-
23
-
24
-
25
- cssのコード
26
-
27
- ```
28
-
29
-
30
-
31
- body{
32
-
33
- margin: 0;
34
-
35
- }
36
-
37
-
38
-
39
- a{
40
-
41
- text-decoration: none;
42
-
43
- }
44
2
 
45
3
 
46
4
 
@@ -48,120 +6,10 @@
48
6
 
49
7
 
50
8
 
51
- header{
52
9
 
53
- height: 100%;
54
10
 
55
- width: 100%;
11
+ 今回の問題が解決されました。
56
-
57
- background-color: rgba(34,49,52,0.9);
58
-
59
- }
60
12
 
61
13
 
62
14
 
63
-
64
-
65
- .header-left {
66
-
67
- font-size: 50px;
68
-
69
- margin-top: 10px;
70
-
71
- font-weight: bold;
72
-
73
- font-family: 'shift', sans-serif;
74
-
75
- color:white;
76
-
77
- }
78
-
79
-
80
-
81
- .top-wrapper{
82
-
83
- padding: 220px 0 100px 0;
84
-
85
- background-image: url(https://visualstudiomagazine.com/blogs/onward-and-upward/2013/04/~/media/ECG/visualstudiomagazine/Images/introimages/VSMWardAzureRuby.ashx);
86
-
87
- background-size: cover;
88
-
89
- color: white;
90
-
91
- text-align: center;
92
-
93
- }
94
-
95
-
96
-
97
- .container{
98
-
99
- width: 1170px;
100
-
101
- padding: 0 0px;
102
-
103
- margin: 0 auto;
104
-
105
- }
106
-
107
-
108
-
109
- .top-wrapper h1{
110
-
111
- opacity: 0.7;
112
-
113
- font-size: 45px;
114
-
115
- letter-spacing: 5px;
116
-
117
- }
118
-
119
-
120
-
121
- .top-wrapper p{
122
-
123
- opacity: 0.7;
124
-
125
- font-size: 14px;
126
-
127
- margin-bottom: 35px;
128
-
129
- }
130
-
131
-
132
-
133
- .signup{
134
-
135
- background-color: #239b76;
15
+ 質問を簡単に消せない仕様のため、このような記述となります。
136
-
137
- }
138
-
139
-
140
-
141
-
142
-
143
-
144
-
145
- .btn{
146
-
147
- padding: 8px 24px;
148
-
149
- color: white;
150
-
151
- display: inline-block;
152
-
153
- opacity: 0.8;
154
-
155
- border-radius: 4px;
156
-
157
- }
158
-
159
-
160
-
161
- .btn:hover{
162
-
163
- opacity: 1;
164
-
165
- }
166
-
167
- ```