-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (52 loc) · 796 Bytes
/
style.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
49
50
51
52
53
54
55
56
57
58
59
60
61
main {
display: flex;
flex-direction: column;
width: 60%;
margin-left: auto;
margin-right: auto;
}
#head {
width: 200px;
margin-left: auto;
margin-right: auto;
margin-bottom: 30px;
font-weight: bold;
font-size: 40px;
}
#head::before {
content: "";
display: block;
height: 2px;
width: 100%;
transform: scaleX(0);
background-color: red;
transition: all 1s;
}
#head:hover::before {
transform: scaleX(1);
}
#menu {
display: flex;
flex-direction: row;
gap: 10px;
border: dashed 0.5px #888;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
#textType {
height: 150px;
}
#sizeFont {
height: 10px;
width: 40px;
}
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.underline {
text-decoration: underline;
}