-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
110 lines (97 loc) · 1.73 KB
/
index.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
99
100
101
102
103
104
105
106
107
108
109
110
body{
background: -webkit-linear-gradient(left, #85d4fc,#b8d8f7,#eeb6f0
, #f8a9f8);
}
header{
position: relative;
width: 100%;
margin-left: 10px;
display: flex;
align-items: center;
justify-content: space-between;
}
nav {
position: relative;
top: 0;
display: flex;
justify-content: space-between;
cursor: context-menu;
}
nav ul{
background-color: black;
padding: 10px;
border-radius: 50px;
}
nav ul li{
list-style: none;
display: inline-block;
}
nav a {
color: white;
text-decoration: none;
font-size: 15px;
padding: 2px 10px;
}
nav a:hover{
background-color: white;
color: black;
border-radius: 20px;
padding: 5px 10px;
backdrop-filter: blur(2px);
}
.logo{
background-color: black;
color: white;
padding: 10px 20px;
border-radius: 50px;
}
.transaction{
margin-right: 15px;
background-color: black;
color: white;
padding: 10px;
border-radius: 50px;
}
.transaction a{
text-decoration: none;
color: white;
}
.content{
text-align: center;
margin-top: 150px;
}
.content h1{
font-family: sans-serif ;
font-size: 55px;
color: black;
font-weight: 900;
transition: 0.4s;
cursor: context-menu;
text-shadow: 2px solid #333;
}
.content h1:hover{
-webkit-text-stroke: 1.5px black;
color: transparent;
transform: translate(0,0) scale(1.2);
}
.content a{
text-decoration: none;
display: inline-block;
color: black;
font-size: 20px;
border: 1px solid black;
padding: 8px 50px;
border-radius: 50px;
margin-top: 20px;
}
.content a:hover{
text-decoration: none;
display: inline-block;
color: black;
font-size: 20px;
border: 1px solid black;
padding: 8px 50px;
border-radius: 50px;
margin-top: 20px;
transform: translate(0,0) scale(1.3);
}