-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
63 lines (57 loc) · 1.21 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
55
56
57
58
59
60
61
62
63
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #14171A;
min-width: 630px;
margin-top: 0px;
}
.container {
width: 70%;
max-width: 57.5em;
padding: 4em 7em 3em 6em;
/* font-size: 12px; */
/* border-radius: 3em; */
/* background-color: black; */
/* position: absolute; */
/* transform: translate(+50%, +50%); */
/* top: 50%;
left: 50%; */
}
.container img {
display: block;
height: 25em;
max-width: fit-content;
max-height: min-content;
margin: 1em auto 3em 3em;
border-radius: 0.5em;
}
.container h2 {
font-size: 12px;
color: #F5F8FA;
margin: 1em 1.5em 1em 5em;
}
.container button {
position: relative;
display: inline-block;
padding: 0.5em 0.5em;
margin: 1em auto 1em 6em;
color: #39061a;
letter-spacing: 2px;
text-decoration: none;
font-size:20px;
overflow: hidden;
transition: 0.2s;
background-color: #9b59b6;
border-color: #9b59b6;
border-radius: 1em;
/* opacity: 0.2; */
}
.container button:hover {
color: #dae6f0;
background: #8e44ad;
box-shadow: 0 0 10px #8e44ad, 0 0 40px #8e44ad, 0 0 80px #8e44ad;
transition-delay: 0.2s;
}