-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (60 loc) · 937 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
65
66
67
68
69
70
71
72
73
74
/* typography */
html {
font-family: system-ui;
}
h1 {
font-size: 2rem;
font-weight: 500;
line-height: 1.2;
text-wrap: balance;
}
/* layout */
* { margin: 0; box-sizing: border-box; }
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 80vh;
padding: 2rem;
}
.card {
padding: 2rem;
width: max-content;
aspect-ratio: 1.41/1;
}
h1#Strategy {
width: 20ch;
}
#UI {
margin-top: 2rem;
}
/* design */
html {
background-color: #EEE;
}
.card {
background-color: #FFF;
box-shadow: 0 0 3rem #00000018;
position: relative;
border-radius: 0.5rem;
}
#UI button {
padding: 0.5em 1em;
/* border-radius: 0.25em;
color: #666;
background-color: #EEE;
background: linear-gradient(#FFF, #EEE);
border: 1px solid #DDD; */
opacity: 0.2;
}
#UI button:hover {
opacity: 1;
}
small {
font-size: 50%;
display: block;
position: absolute;
bottom:2rem;
right:2rem;
}