forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (61 loc) · 1 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
76
77
78
79
80
81
82
83
84
85
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background-image: linear-gradient(to left, rgb(10, 0, 73) , rgb(0, 0, 0));
overflow-x: hidden;
color: rgb(255, 255, 255);
font-family: sans-serif;
}
.body::-webkit-scrollbar {
display: none;
}
.auto-typed{
background: -webkit-linear-gradient(#e4d6fb, #8400ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.section_title{
background: -webkit-linear-gradient(#e4d6fb, #8400ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 4rem;
font-weight: bold;
}
#bg{
position:fixed;
top:0;
left: 0;
bottom: 0;
right: 0;
z-index: -1;
}
.input_container{
display: flex;
width: 100%;
justify-content: center;
}
.date_input{
width: 700px;
}
.apod_img_container{
width: 500px;
height: 500px;
}
.img{
width: 500px;
height: 400px;
}
.info{
width: 500px;
height: 100px;
}
#apod_img{
border-radius: 25px;
}
#apod_img:hover {
color: white;
box-shadow: 0 5px 15px #9000ff;
}