-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (50 loc) · 787 Bytes
/
style.css
File metadata and controls
54 lines (50 loc) · 787 Bytes
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
body {
background-color: #fbcfe8;
margin: 0;
height: 80%;
}
html {
height: 80%;
width: 100%;
}
.butt {
background-color: aquamarine;
font-size: xx-large;
font-style: normal;
border-radius: 8px;
font-family: monospace;
padding: 10px 20px;
box-shadow: 0 8px 16px #c95daf;
}
header {
text-align: right;
background-color: #7fffd4;
border: none;
}
#someDiv {
font-size: xx-large;
font-family: monospace;
padding: 10px;
color: rgb(0, 0, 0);
}
main {
height: max-content;
font-family: monospace;
font-size: xx-large;
object-position: 50% 50%;
border: none;
padding: 10px;
}
a {
text-decoration: none;
color: black;
}
footer {
text-align: right;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 30%;
}