-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css~
executable file
·96 lines (78 loc) · 1.56 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
.dropbtn {
background-color: #000000;
border-radius: 10px;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
font-family: 'Roboto', sans-serif;
}
.aboutMe {
font-family: 'Roboto', sans-serif;
color: rgb(255, 255, 255);
}
.aboutMe p {
font-size: 20px;
}
.test {
background-color: #2596be;
}
body {
width: 100%;
height: 100vh;
color: #fff;
background: linear-gradient(-45deg, #ee7752, #E73C7E, #23A6D5, #23d5AB);
background-size: 400% 400%;
position: relative;
animation: change 10s ease-in-out infinite;
margin:0;
}
@keyframes change{
0% {
background-position: 0 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0 50%;
}
}
img {
width: 45%;
height: 45%;
}
.grantSoftwareImg {
width: 30%;
height: 30%;
}
.dropbtn:hover, .dropbtn:focus {
background-color: #2980B9;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-items {
float: left;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 160px;
overflow: auto;
font-family: 'Roboto', sans-serif;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: rgb(119, 116, 116);}
.show {display: block;}