-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (78 loc) · 1.82 KB
/
style.css
File metadata and controls
95 lines (78 loc) · 1.82 KB
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
body{
background-color: #0093E9;
background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%), linear-gradient(red, yellow);
text-align: center;
padding: 20px;
background-repeat:no-repeat center center;
scroll-behavior: smooth;
}
@keyframes coolHeaderAnimation {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
100% {
transform: scale(1);
}
}
h1 {
font-family: 'Poppins', sans-serif;
font-size: 50px;
}
body {
color: #fff;
animation: coolHeaderAnimation 2s ;
}
.article1 {
font-family: 'Poppins';font-size: 22px;
color: hsl(0, 0%, 0%) ;
margin: 50px auto;
padding: 1em;
margin-bottom: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: right;
background-color: hsl(0, 0%, 100%);
border-radius: 10px;
width: 800px;
text-align: center;
transform: scale(1.05);
}
p{
color:hsl(0, 0%, 0%) ;
text-align: center;
font-family: 'Poppins';font-size: 22px;
margin-bottom: 10px;
}
footer{
display: flex;
justify-content: center;
align-items: center;
display: flex;
justify-content: center;
align-items: center;
}
img {
width: 800px;
height: auto;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
animation: coolHeaderAnimation 4s ;
}
.nav a {
font-family: 'Poppins', sans-serif;
font-size: 25px;
text-align: center;
color: rgb(255, 255, 255);
margin: 0 10px;
text-decoration: none;
padding: 10px 20px;
border: 2px solid rgb(255, 255, 255);
border-radius: 20px;
transition: all 0.3s ease;
}
.nav a:hover {
background-color:white;
color: rgb(0, 0, 0);
}