-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
83 lines (83 loc) · 1.39 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
body{
display: flex;
flex-direction: column;
align-items: center;
}
h3{
text-align: center;
color: orange;
}
h1{
text-align: center;
color: red;
/* text-shadow:
1px 1px 0 black,
-1px 1px 0 black,
-1px -1px 0 black,
1px -1px 0 black,
1px 0px 0 black,
0px 1px 0 black,
-1px 0px 0 black,
0px -1px 0 black; */
}
h2{
text-align: center;
font-size: 2em;
color: orangered;
/* text-shadow:
1px 1px 0 dimgray,
-1px 1px 0 dimgray,
-1px -1px 0 dimgray,
1px -1px 0 dimgray,
1px 0px 0 dimgray,
0px 1px 0 dimgray,
-1px 0px 0 dimgray,
0px -1px 0 dimgray; */
}
a {
text-decoration: none;
color: black;
background-color: dimgray;
border-radius: 10px;
padding: 5px;
margin: 3px;
}
a:hover {
color: whitesmoke;
}
.enigma{
display: flex;
flex-direction: column;
align-items: center;
}
.title{
display: flex;
flex-direction: row;
align-items: center;
margin-top: 1.5em;
margin-bottom: 0.25em;
}
h4{
margin: 0;
margin-right: 0.5em;
}
p{
margin: 0;
}
.finished{
height: 2.5em;
}
.not-finished{
height: 2.5em;
}
#finish-code{
text-align: center;
margin-top: 2.5em;
margin-bottom: 5em;
font-size: x-large;
font-weight: bold;
color: green;
}
footer{
margin-top: 3em;
}