-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice.css
50 lines (45 loc) · 1.06 KB
/
practice.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.background_test {
background: linear-gradient(90deg, rgb(255, 240, 245), rgb(255, 228, 225));
}
body{
background: beige;
}
p{
color: black;
font-size: 15px;
}
h1{
background: brown;
width: 500px;
height: 50px;
text-align: center;
}
h2{
font-size: 60px;
text-align: center;
background-color: pink;
}
#practice{
font-size: 40px;
text-align: center;
font-style: italic;
background: hotpink;
width: 500px;
height: 100px;
}
.logo_test { /* ロゴ部分の指定 */
text-align: center; /* 文字を中央揃え */
font-style: italic;
font-size: 40px;
padding: 100px; /* 余白指定 */
color: black; /* 文字の色指定 */
border: solid 1px pink; /* 枠線指定 */
width: 220px; /* 幅指定 */
margin: 0 auto; /* 中央寄せ */
}
.background_test { /* 背景部分の指定 */
padding: 100px; /* 余白指定 */
}
.otoiawase{
font-size: 12px;
}