-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (45 loc) · 1.46 KB
/
style.css
File metadata and controls
54 lines (45 loc) · 1.46 KB
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
body{
background-image: linear-gradient(to right top, #001289, #00138e, #001493, #001498, #00159d, #00159f, #0016a0, #0016a2, #0016a1, #01169f, #01169e, #01169d);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
#container{
background-image: linear-gradient(to right top, #4a8df4, #2d9cfa, #00aafe, #00b7ff, #00c3ff, #00ccff, #00d5ff, #00defd, #18e6fa, #33eef5, #4bf6ef, #63fde9);
width: 400px;
height: 200px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: blue 0px 0px 0px 2px inset, rgb(255, 255, 255) 10px -10px 0px -3px, rgb(31, 193, 27) 10px -10px, rgb(255, 255, 255) 20px -20px 0px -3px, rgb(255, 217, 19) 20px -20px, rgb(255, 255, 255) 30px -30px 0px -3px, rgb(255, 156, 85) 30px -30px, rgb(255, 255, 255) 40px -40px 0px -3px, rgb(255, 85, 85) 40px -40px;
}
button{
border: 10px;
border-radius: 8px;
width: 50px;
height: 50px;
margin: 10px;
box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
button:hover{
cursor: pointer;
}
.prp_btn{
background-color: rgb(194, 61, 194);
}
.green_btn{
background-color: rgb(104, 248, 104);
}
.yellow_btn{
background-color: yellow;
}
.prp_btn:hover{
background-color: rgb(170, 60, 170);
}
.green_btn:hover{
background-color: rgb(76, 185, 76);
}
.yellow_btn:hover{
background-color: rgb(192, 192, 23);
}