-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
52 lines (52 loc) · 1.02 KB
/
styles.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
section{
width: 100%;
min-height: 100vh;
background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url(./bg.jpg);
background-position: center;
background-size: cover;
color: #fff;
}
::-webkit-scrollbar{
width: 18px;
}
::-webkit-scrollbar-thumb{
background: linear-gradient(45deg,#06dee1,#79ff6c);
border-radius: 8px;
}
section #intro{
font-size: 4em;
text-align: center;
transition: 2s;
letter-spacing: 0px;
animation: animate1 3s linear infinite;
}
@keyframes animate1{
50%{
letter-spacing: 3px;
}
}
section #intro span{
color: red;
opacity: 0.7;
}
section #lesson-text{
font-size: 3em;
}
section #lesson-text2{
font-size: 1.6em;
}
.green-btn{
text-align: center;
text-decoration: none;
border-radius: 8px;
background: lightgreen;
font-size:150%;
height:75px;
width:125px;
}