-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (75 loc) · 1.4 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
74
75
header {
display:block;
text-align: center;
height:55px;
background-image: linear-gradient(to right, pink, purple);
border:5px solid black;
color:black;
}
.square {
border:5px solid black;
display:block;
position:absolute;
left:35%;
top:10%;
background-image: linear-gradient(to right, pink, purple);
width: 30%;
height: 20px;
margin:20px
}
#subtitle {
text-align:center;
}
.content {
background-image: linear-gradient(to right, pink, purple);
border:5px double black;
display:inline-block;
position: absolute;
bottom:85px;
left:30%;
top:15%;
text-align: left;
font-size: 20px;
font-size: 1vw;
width: 40%;
margin:20px;
padding:5px;
height: fit-content;
}
.content p{
font-size: 25px;
}
.sidebar {
background-image: linear-gradient(to right, pink, purple);
border:5px solid black;
padding:3px;
display:inline-block;
position: absolute;
right:5%;
top: 20%;
bottom:85px;
width:246px;
height:400px;
}
h4 {
font-size: 20px;
}
body {
height:fit-content;
}
footer {
display:inline-block;
position: fixed;
width:100%;
bottom:0;
height:40px;
background-image: linear-gradient(to right, pink, purple);
border: 5px solid black;
}
.blended {
background-image:url(https://qph.fs.quoracdn.net/main-qimg-7f4ff01964a4d5065f3fc28fdbbb6057-c);
background-repeat: repeat-x;
background-color: aqua;
background-blend-mode:multiply;
height:100%;
}