-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
28 lines (21 loc) · 836 Bytes
/
style.css
File metadata and controls
28 lines (21 loc) · 836 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
html {background: radial-gradient(farthest-corner at right,#b7b7b7b7,#2f0023);
background-repeat: no-repeat;
cursor: default;
font-weight: bold;
font-family:'Poppins';
width: 100%; height: 275%; color: white;}
.Image {height: 80%; width: 80%;
border: solid 2px pink;
background: black;
transition: box-shadow 0.3s;
border-radius: 50px;}
.Image:hover {box-shadow: 0px 0px 15px magenta;
transition: box-shadow 0.3s;}
h3,h1 {text-shadow: 0px 0px 15px red;}
.funny {color:white; transition: color 1.0s;}
.funny:hover {rotate: 360deg; color: pink; transition: rotate 1.0s, color 1.0s;}
@media screen and (min-width: 900px){
html {height: 300%;}
.Image {height: 25%; width: 25%;}
}
/*please if u r reading this, i just copied a bit of your code, srry :3*/