-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
98 lines (89 loc) · 1.53 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
92
93
94
95
96
97
98
body
{
margin: 0%;
padding:0%;
}
.container
{
text-align: center;
margin-top:180px;
}
.header
{
text-align: center;
/* text-shadow: 3px 3px #000; */
color: white;
font-size: 30px;
/* border: 1px solid #3498db;
border-spacing: 1px; */
font-family: "montserrate";
cursor: pointer;
margin: 10px;
transition: 1s;
position: relative;
overflow: hidden;
}
.header:hover
{
/* color: #000000; */
color: red;
scrollbar-shadow-color: #FF8C00;
}
.btn
{
/* border: 2px solid #3498db; */
border: 2px solid #BD2130;
background: none;
padding: 10px 10px;
font-size: 30px;
font-family: "montserrate";
cursor: pointer;
margin: 10px;
transition: 0.3s;
position: relative;
overflow: hidden;
}
.btn
{
color : #fff;
}
.btn:hover
{
/* color: #000000; */
color: #000;
}
.btn::before
{
content:"";
position: absolute;
left: 0;
width: 100%;
height: 100%;
/* background: #3498db; */
background: #BD2130;
z-index: -1;
transition: 0.8s;
}
/* .btn::before
{
top:0;
border-radius: 0 0 50% 50%;
height: 180%;
} */
/* .btn:hover::before{
height: 180%;
} */
.fotter-icon {
/* text-align: left; */
/* border: 0.5px;
/* background-color: hsl(204, 70%, 53%); */
/* bottom:0;
padding: 0% 0% 0%; */
position: fixed;
left: 0;
bottom: 0;
width: 100%;
/* background-color: #3498db; */
color: white;
text-align: center;
}