-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (53 loc) · 1.08 KB
/
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Rubik", sans-serif;
}
body {
background-image: url("https://wallup.net/wp-content/uploads/2016/03/12/300106-anime-anime_girls-original_characters-hoods-748x421.png");
background-repeat: no-repeat;
background-size: cover;
color: black;
}
header {
display: flex;
place-content: center;
font-weight: 700;
font-size: 19px;
margin: 15px 0 0 0;
}
.wrapper {
display: flex;
flex-direction: column;
margin: 30px 50px 0 50px;
border-style: solid;
border-width: 1px;
padding: 50px 40px;
background-color: rgba(222, 206, 163, 0.797);
border-radius: 5px;
box-shadow: 20px 20px 40px rgba(red, green, blue, alpha);
}
p {
font-size: 16px;
font-weight: 500;
text-align: center;
word-wrap: break-word;
line-height: 30px;
margin: 30px 0;
color: black;
}
button {
display: block;
background-color: rgb(214, 138, 75);
padding: 10px 0;
border-radius: 15px;
border: none;
font-size: 18px;
font-weight: 600;
cursor: pointer;
}
#author {
font-weight: 800;
text-transform: uppercase;
}