-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (83 loc) · 1.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
@font-face {
font-family: "Montserrat";
src: url("/docs/Montserrat-VariableFont_wght.ttf");
}
body{
margin: 0;
padding:0;
font-family:"Montserrat";
}
.page{
position: sticky;
top:0;
height: 100vh;
background:#4451DE;
}
.page:nth-child(1){
background:#44DE84;
text-align: center;
}
.page:nth-child(1) h1{
color: #173685;
font-size:35pt;
animation:1s FadeIn;
}
.page:nth-child(1) p{
font-family: monospace;
animation:1.5s FadeIn;
}
button {
color: #173685;
padding: 20px;
border:2px solid #6900FF;
border-radius:25px;
animation:2s FadeIn;
margin:10px;
transition:0.6s;
}
button:hover{
background:#6900FF;
color:#fff;
}
button:hover a{
background: #6900FF;
color: #fff;
}
a{
text-decoration:none;
}
.page:nth-child(2) {
background: #4492DE;
padding:10px;
display:flex;
justify-content: center;
align-items: center;
}
.page:nth-child(2) li{
font-size: 24pt;
color:#B1FF00;
}
.page:nth-child(3){
background:#00FFF4;
font-size: 35pt;
}
div{
display: grid;
grid-template-columns: repeat(1fr);
}
footer{
height:100vh;
padding:30px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
@keyframes FadeIn{
0%{
opacity:0;
}
100%{
opacity:1;
}
}