-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (74 loc) · 1.3 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body {
word-wrap: break-word;
font-family: Arial, Helvetica, sans-serif;
}
#container {
display: flex;
flex-direction: column;
margin: 0 auto;
}
#center {
display: flex;
flex-direction: row;
margin-top: 20px;
align-self: center;
}
#periodic-table {
display: grid;
grid-template-columns: repeat(18, 40px);
grid-template-rows: repeat(10, 40px);
}
#element-card {
margin-top:2px;
margin-left: 4px;
margin-bottom: 2px;
width: 300px;
height: 400px;
border: 1px solid black;
display: flex;
flex-direction: column;
}
#cardNumber {
font-size: 24pt;
margin-bottom: 60px;
}
#cardSymbol {
text-align: center;
vertical-align: bottom;
font-size: 60pt;
}
#cardLink {
font-size: 14pt;
text-align: center;
}
#cardStars {
font-size: 18pt;
text-align: center;
}
#cardBlurb {
margin: 2px;
margin-top: 20px;
font-size: 10pt;
}
.middle {
text-align: center;
}
#title {
font-size: 40px;
text-align: center;
}
#madeby > * {
margin-top: 20px;
text-align: center;
font-size: 8pt;
}
.table-element {
margin: 1px;
border: 1px solid black;
font-size: 16pt;
text-align: center;
vertical-align: middle;
line-height: 40px;
user-select: none;
cursor: pointer;
}