-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (36 loc) · 721 Bytes
/
styles.css
File metadata and controls
41 lines (36 loc) · 721 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
35
36
37
38
39
40
41
#email {
background-color: rgb(255, 245, 238);
box-sizing: border-box;
padding: 50px;
margin: 50px auto;
width: 500px;
border: 2px solid black;
box-shadow: rgb(128, 128, 128) 5px 3px 3px 0px;
}
#confidential {
display: inline-block;
margin-left: 100px;
padding: 10px;
text-align: center;
font: 30px bold;
transform: rotate(-20deg);
color: red;
border: 5px solid red;
}
#top-secret {
margin-left: 200px;
display: inline-block;
padding: 10px;
text-align: center;
font: 20px bold;
transform: rotate(15deg);
border: 5px solid red;
color: red;
}
.blurred {
filter: blur(3px)
}
p {
display: block;
margin: 1em 0;
}