-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (61 loc) · 1.04 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
86
87
88
89
90
91
body {
margin-top: 70px;
background-color: aqua;
}
.container{
height: 550px;
}
h1{
color:black;
font-weight: bolder;
font-size: 24px;
text-shadow: 2px 3px 4px white;
}
h4{
padding: 10px;
}
.OutputVal{
padding-left: 10px;
}
footer{
color:white;
font-weight: bolder;
height: 200px;
padding-top: 20px;
align-content: center;
text-align: center;
background-color: black;
background-attachment: fixed;
}
.fa {
padding: 20px;
font-size: 30px;
width: 80px;
text-align: center;
text-decoration: none;
border-radius: 29px;
}
.fa-facebook {
background: #3B5998;
color: white;
}
.fa-youtube {
background-color: #bb0000;
color: white;
}
.fa:hover{
opacity: 0.7;
}
::-webkit-scrollbar{
width: 20px;}
::-webkit-scrollbar-track{
border-radius: 10px;
border: 2px solid black ;
}
::-webkit-scrollbar-thumb{
background-image:linear-gradient(blue, aqua);
border-radius: 15px;
}
::-webkit-scrollbar-thumb:hover{
background-color:midnightblue;
}