-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
135 lines (114 loc) · 2.25 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
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
125
126
127
128
129
130
131
132
133
134
135
* {
font-family: 'Amaranth', sans-serif;
}
@keyframes bg-gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes fadeIn {
0% {opacity:0;}
10% {opacity:0.4;}
50% {opacity:0.8}
100% {opacity:1;}
}
.w3-font {
font-family: 'Amaranth', sans-serif;
}
.w3-card {
background: rgba(0,0,0,0.2)
}
/* Float four columns side by side */
.column {
float: left;
width: 25%;
padding: 0 10px;
}
/* Remove extra left and right margins, due to padding */
.row {margin: 0 -5px;}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.card:hover {
cursor:pointer;
}
body {
background: linear-gradient(-45deg, #349ef0, #7a4abe, #349ef0);
background-size: 400% 400%;
animation: bg-gradient 15s ease infinite;
}
p {
color:#b5b7eb;
animation: fadeIn ease-out 0.8s;
}
h1 {
position:relative;
left:80px;
color:#b5b7eb;
animation: fadeIn ease-out 0.8s;
font-family: 'Amaranth', sans-serif;
}
button {
background-color: rgba(255,255,255,0.3);
color: #232f42;
border: 2.5px solid #6186c2;
border-radius: 10px;
padding: 5px 13px;
margin-bottom: 6px;
transition-duration: 0.45s;
animation: fadeIn ease-out 0.8s;
}
button:hover {
background-color:rgba(0,0,0,0.2);
border: 2.5px solid #81a1d6;
color: #9dade3;
}
a:link {
color:#a0b4db;
}
a:visited {
color:#b5b7eb;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 10%;
background: linear-gradient(-45deg, #626ce0, #349ef0, #626ce0);
background-size: 400% 400%;
animation: bg-gradient 15s ease infinite;
border-radius:100px;
border: linear-gradient(90deg, rgba(52,158,240,1) 0%, rgba(74,87,191,1) 100%);
border: 10px solid #4f71b0;
animation: fadeIn ease-out 0.8s;
}
.logo {
cursor: pointer;
}
.nav__linnks {
list-style: none;
}
.nav__linnks button {
display: inline-block;
padding: 10px 10px;
border: 0px solid #6186c2;
background-color: rgba(0, 0, 0, 0);
font-size: 20px;
color: #b5b7eb;
}
.nav__linnks button:hover {
color: #ffffff;
}
p1 {
font-size: 1.75em;
color:#b5b7eb;
}