-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.css
More file actions
124 lines (96 loc) · 1.57 KB
/
button.css
File metadata and controls
124 lines (96 loc) · 1.57 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
h1{
font-family:arial,verdane;
font-size:80px;
color:white;
text-align:center;
margin-left:1px;
opacity:.9;
letter-spacing:2px;
animation:text 3s 1;
}
}
.image{
background:url("dp.jpg");
background-size:100%;
height:500px;
position:fixed;
z-index:-1;
filter:blur(5px);
-webkit-filter:blur(5px);
}
.button{
border:1px solid;
border-radius:3px;
font:700 13px montserrat;
height:30px;
line-height:28px;
padding:0 20px;
margin-top:200px;
margin-left:190px;
text-align:centre;
box-sizing:border-size;
}
ul{
list-style:none;
padding:0;
}
li{
display:inline;
}
a{
text-decoration:none;
color:white;
float:left;
}
a:hover{
background-color:white;
color:black;
}
.but{
border:1px solid;
border-radius:10px;
font:700 13px montserrat;
height:35px;
line-height:35px;
padding:0 20px;
margin-top:300px;
box-sizing:border-size;
background-color:black;
position:absolute;
left:50%;
transform:translate(-50%,0);
}
.container{
text-align:centre;
position:absolute;
left:50%;
margin-top:75px;
transform:translate(-50%,0);
font-family:arial,verdane;
}
.container span{
color:white;
text-transform:uppercase;
display:block;
}
.text1{
font-size:70px;
font-weight:700;
letter-spacing:8px;
animation:text 10s 1;
animation-iteration-count:infinite;
}
@keyframes text{
0%{
color:black;
margin-bottom:-40px;
}
30%{
letter-spacing:12px;
margin-bottom:-40px;
}
85%{
letter-spacing:11px;
margin-bottom:-40px;
}
}