-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
73 lines (63 loc) · 1.23 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
64
65
66
67
68
69
70
71
72
73
.main-content {
background-color: cornflowerblue;
background-repeat: no-repeat;
background-size: cover;
padding: 10px;
margin: 0;
text-align: center;
height: 740px;
/* background-blend-mode: soft-light; */
;
}
.image {
border-radius: 20px 0px;
}
.sepia {
filter: sepia(100%);
}
.blur {
filter: blur(2px);
}
.black-and-white {
filter: grayscale(100%);
}
.gradient {
background: linear-gradient(to right, #f00, #0f0, #00f);
}
.grid {
display: flex;
}
.btn {
color: rgb(26, 197, 52);
background-color: rgb(212, 232, 232);
border: none;
margin: 2px;
cursor: pointer;
width: 25%;
height: 50px;
font-weight: bolder;
}
.footer {
color: #fff;
text-align: center;
padding: 10px;
background-color: rgb(88, 157, 134);
}
h1 {
margin-top: 0px;
margin-bottom: 50px;
text-align: center;
font-family: sans-serif;
font-size: 3rem;
letter-spacing: 0.15rem;
text-transform: uppercase;
color: #fff;
/* text-shadow: -4px 4px #ef3550, -8px 8px #f48fb1, -12px 12px #7e57c2, -16px 16px #2196f3, -20px 20px #26c6da; */
}
.import {
font-size: 1.5rem;
font-weight: bold;
color: #fff;
padding: 10px;
margin: 10px;
}