-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (83 loc) · 1.7 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
html {
margin: 0;
padding: 0;
}
body {
background-image: url("assets/Wallpaper_blur.png");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
text-align: center;
font-family: 'Poppins';
margin: 0;
padding: 0;
min-height: 100%;
display:flex;
flex-direction:column;
}
h1 {
margin-top: 5px;
margin-bottom: 0;
color:black;
font-family: "Cookie", cursive;
font-size: 50px;
}
a {
text-decoration: none;
color: black;
}
footer {
background-color: black;
color: white;
width: 100%;
height: 32.5px;
font-family: sans-serif;
padding-top: 15px;
margin-top: auto;
}
.profile {
max-width: 200px;
}
#line {
border-top: 10px solid plum;
width: 200px;
margin: 70px auto 0 auto;
}
@keyframes swinging {
0%{transform: rotate(10deg);}
50%{transform: rotate(-10deg)}
100%{transform: rotate(10deg);}
}
.swingimage {
-webkit-transform-origin: 50% 0;
transform-origin: 50% 0;
-webkit-animation: swinging 3.5s ease-in-out forwards infinite;
animation: swinging 3.5s ease-in-out forwards infinite;
}
.linkarea {
margin: 20px auto;
}
.container {
margin: 30px 0;
}
.card {
background-color: #fff;
font-size: 18px;
width: 300px;
margin: 0 auto;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
text-align: center;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;
}
.card:hover {
color: white;
width: 250px;
background-image: linear-gradient(90deg, #a2c6f7, #E88B9A 50%, #E9E9E9);
}
.fab,
.fas {
margin-right: 7px;
}