-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (59 loc) · 969 Bytes
/
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
body{
font-family: monospace;
background-repeat: no-repeat;
background-color: black;
text-align: center;
letter-spacing: 1px;
margin-top: 0px;
margin-bottom: 10px;
background-size: 1950px 1020px;
background-position:middle;
color: gray;
}
a{
font-size: 20px;
background-image:cover;
text-align: center;
letter-spacing: 2px;
margin-top: 125px;
margin-bottom: 10px;
text-decoration: none;
color: pink;
}
.s{
color:white;
font-size: 75px;
}
.d{
color:purple;
font-size: 15px
}
.scripts{
margin-right: 1800px;
}
.sr3{
color: green;
}
button{
background-color:black;
color:white;
border:none;
border-radius: 10px;
padding: 1px;
}
button:hover{
background-color:darkgray;
}
a:hover{
color:red;
}
.animated-element {
max-height: 0;
overflow: hidden;
opacity: 0;
transition: max-height 0.5s ease, opacity 0.5s ease;
}
.animated-element.visible {
max-height: 1000px;
opacity: 1;
}