-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
74 lines (70 loc) · 1.43 KB
/
stylesheet.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
*{
padding: 0;
margin: 0;
}
body{
background: url("./assests/snake_bg.jpg");
background-repeat: no-repeat;
background-size: 100vw 100vh;
}
.firstDiv{
justify-content: center;
align-content: center;
display:flex;
}
.heading{
font-family: 'Frijole', cursive;
color:white;
margin-top: 90px;
font-size: 70px;
}
.head-effect{
position: relative;
background: linear-gradient(to right, white, rgb(166, 255, 0) 50%,yellow 50%,red);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 200% 100%;
background-position: 100%;
transition: background-position 275ms ease;
}
.head-effect:hover{
color: crimson;
background-position: 0 100%;
}
#Bottom {
position : absolute;
bottom : 0;
color: white;
}
.row{
position:absolute;
top:280px;
}
button.close {
background: #d73e4d;
background: rgba(215, 62, 77, 0.75);
border: 0 none !important;
color: red;
display: inline-block;
float: right;
font-size: 35px;
height: 40px;
line-height: 0;
margin: 0px 0px;
opacity: 1;
text-align: center;
text-shadow: none;
-webkit-transition: background 0.2s ease-in-out;
transition: background 0.2s ease-in-out;
vertical-align: top;
width: 46px;
}
.modal{
backdrop-filter: blur(5px);
}
@media(max-width:960px){
.heading{
font-size: 40px;
}
}