-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
55 lines (44 loc) · 851 Bytes
/
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
53
@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&display=swap');
* {
box-sizing: border-box;
margin: 0;
font-family: 'Akaya Kanadaka', cursive;
}
body {
display: grid;
justify-content: center;
text-align: center;
background-color: rgb(255, 225, 248);
}
h1 {
margin: 1rem;
padding: 1rem;
font-size: 350%;
text-shadow: 3px 5px 5px rgb(143, 135, 255);
}
h1:hover {
font-size: 355%;
text-shadow: 1px 1px 10px rgb(19, 24, 196);
transition: all 0.5s;
}
div {
margin: 1em;
padding: 0.5em;
}
.text {
margin: 1px;
padding: 1px;
font-size: 28px;
}
.app-options {
font-size: 25px;
}
a {
color: rgb(150, 3, 142);
text-decoration: none;
}
a:hover {
font-size: 26.5px;
text-shadow: 3px 3px 7px rgb(71, 0, 62);
transition: all 0.5s;
}