-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (46 loc) · 1.13 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
.nav-link:hover{
background-image: linear-gradient(90deg,darkcyan, purple);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
body{
font-family: 'Roboto Mono', monospace;
background-color: black;
}
#hello{
background-image: linear-gradient(90deg,purple, lightseagreen);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
#hello_greeting{
background-image: linear-gradient(90deg,darkcyan, purple);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
section{
background-color: black;
}
nav{
background-color: black;
}
#btn{
border-image: linear-gradient(45deg,darkcyan, purple) 1;
border-width: 1px;
}
button:hover{
color: white !important;
}
#card {
background-color: black;
border-image: linear-gradient(45deg, darkcyan, purple) 1;
border-width: 2px;
}
#card:hover {
background-color: black;
border-image: linear-gradient(45deg, purple, lightseagreen) 1;
border-width: 2px;
transform: scale(1.03);
}