-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
91 lines (86 loc) · 1.8 KB
/
main.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body{
height:fit-content;
}
.pagebg{
position:relative;
background-image: linear-gradient(to left, rgb(0, 0, 0) , rgba(61, 35, 35, 0.884));
width: 100%;
height:65%;
}
.nav-btn{
background-color: rgb(255, 236, 70);
position: fixed;
top:0;
left: 0;
color: black;
z-index: 100;
border-radius: 5px;
}
button{
background-color: black;
border-radius: 5px;
color: rgb(255, 255, 255);
font-size: 20px;
padding: 10px;
margin: 7px;
cursor: pointer;
}
button :active {
transform: scale(0.5);
}
.aligntextright{
text-align: right;
}
.topbar{
border-width: 0px 0px 5px 0px;
border-style:double;
border-color: black;
}
.cardborder:hover{
background-image: linear-gradient(to right, )rgba(163, 163, 49, 0.514) ,rgba(201, 201, 201, 0.884), rgba(255, 255, 255, 0);
animation-name:shadow;
animation-duration:1.1s;
animation-timing-function :ease-in;
animation-iteration-count:1;
}
@keyframes shadow{
0%{
border-width: 0px 0px 0px 0px;
border-style:groove;
border-color: black;
border-width: 0px 0px 0px 0px;
box-shadow:-10px 20px 10px #330404;
}
50%{
border-width: 20px 10px 5px 2pxp;
border-style:groove;
border-color: black;
box-shadow:10px -20px 10px #330404;
}
}
.cardborder{
position:relative;
margin-bottom: 10px;
border-width: 0.2px 3px 5px 1px;
border-style:groove;
border-color: rgb(255, 253, 253);
box-shadow:-10px 20px 10px #330404;
background-image: linear-gradient(to right, rgba(255, 255, 255, 0) ,rgba(201, 201, 201, 0.884), rgba(155, 155, 76, 0.514));
min-height: 50vh;
}
.card-title{
text-align: center;
}
.footertext{
text-align: right;
color:rgb(43, 16, 16);
position:fixed;
width: 98vw;
left: 0px;
bottom:0px;
font-size: 15px;
}
.no-decoration{
text-decoration: none;
color:rgb(56, 35, 35);
}