-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle03b.css
More file actions
34 lines (31 loc) · 551 Bytes
/
style03b.css
File metadata and controls
34 lines (31 loc) · 551 Bytes
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
.wrap{
width: 400px;
padding: 10px;
background: rgb(236,236,236);
position: fixed;
top: 15%;
left: calc(50% - 210px);
box-shadow: 0 0 10px black;
}
.hidden{
display: none;
}
span{
position: absolute;
right: -15px;
top: -15px;
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border-radius: 50%;
background: lightgrey;
font-size: 34px;
cursor: pointer;
transition: 0.5s;
}
span:honer{
background: grey;
color: white;
}