-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdom.css
More file actions
72 lines (65 loc) · 1.21 KB
/
dom.css
File metadata and controls
72 lines (65 loc) · 1.21 KB
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
62
63
64
65
66
67
68
69
70
71
72
body{
background-color: cadetblue;
font-family: Arial, Helvetica, sans-serif;
font-weight: bolder;
display: flex;
justify-content: center;
}
.main{
height:fit-content;
width:80%;
display:flex;
align-items: center;
position:absolute;
border: 10px solid white;
padding: 10px;
margin: 10px;
}
.container{
height: fit-content;
width:400px;
display: flex;
justify-content: center;
align-items: center;
}
.text-container{
height: 300px;
width:400px;
border:3px solid whitesmoke;
margin-left: 20px;
margin-right: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.btn-container{
display: flex;
justify-content: center;
align-items: center;
height: 300px;
width:400px;
border:3px solid whitesmoke
}
li{
height: auto;
width: auto;
background-color: white;
border:4px solid black;
padding-bottom:30px;
margin-bottom:-16px;
margin-left: -40px;
margin-top: -16px;
list-style: none;
text-align: center;
}
#item{
color:red
}
.bg{
background-color: hotpink;
}
.change{
font-size: 3rem;
color: hotpink
}