-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (77 loc) · 1.33 KB
/
style.css
File metadata and controls
88 lines (77 loc) · 1.33 KB
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
88
body {
background-color: #383838;
}
#periodic-table {
width: 100%;
height: 50%;
max-width: 700px;
table-layout: fixed;
margin: auto;
}
td {
position: relative;
font-family: "Consalas", monospace;
border-radius: 3px;
user-select: none;
}
.table-data :first-child {
width: 100%;
position: absolute;
display: block;
top: 0px;
left: 2px;
font-size: 50%;
}
.table-data :not(:first-child) {
position: relative;
display: block;
width: 100%;
text-align: center;
top: 0.5vh;
margin-top: 1.2vmin;
margin-bottom: 0.5vh;
font-size: 85%;
}
#element-input {
color: white;
background-color: rgb(82, 82, 82);
box-shadow: 1px 1px 7px #aeacac;
}
.not-guessed {
background-color: rgb(130, 128, 128);
color: transparent;
}
.guessed {
color: black;
font-weight: bold;
transition: ease-out 0.75s;
border-style: solid 1px black;
text-shadow: 3px 3px 10px black;
}
.guess-bar div {
margin: auto;
margin-bottom: 3px;
padding: 5px;
border: 4px solid black;
border-radius: 4px;
width: 300px;
font-family: "Rubik";
color: black;
}
#guesser {
padding: 15px;
width: 50%;
margin: auto;
display: grid;
}
#element-input {
margin-left: 20%;
margin-right: 20%;
}
#guess-button {
margin-left: 30%;
margin-right: 30%;
margin-top: 10px;
background-color: #aeacac;
color: black;
}