-
Notifications
You must be signed in to change notification settings - Fork 0
/
memory.css
65 lines (62 loc) · 997 Bytes
/
memory.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 {
background-color: #151b29;
}
.b {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
width:400px;
height:100%;
}
.c {
display:flex;
justify-content: center;
}
h1 {
text-align: center;
text-decoration: underline;
color: red;
}
h2 {
text-align: center;
color: red;
}
h3 {
text-align: center;
color: red;
}
h4 {
text-align: center;
color: red;
}
h5 {
text-align: center;
color: red;
}
button {
color: #ffa260;
border-color: yellow;
border: 2px;
border-style: solid;
background-color: #151b29;
padding: 1em 2em;
font-size: 1em;
transition: all 0.25s;
}
button:hover {
border-color: yellow;
color: white;
box-shadow: 0em 0.5em 0.5em -0.4em #f1ff5c;
transform: translateY(-0.5em);
transform: scale(1.1);
cursor: pointer;
}
.d {
display: flex;
justify-content: center;
}
a {
text-decoration: none;
color:inherit;
}