blob: 9445212c9ac30da88a8d143bb5ca6ee3c91afa12 (
plain)
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
|
@font-face {
font-family: 'GOTFont';
src: url('fonts/gameofthrones.ttf');
}
body {
background: #faf0e5
}
h1 {
font-family: 'GOTFont', Georgia, serif;
}
.legible {
color: white;
text-shadow:
0.05em 0 black,
0 0.05em black,
-0.05em 0 black,
0 -0.05em black,
-0.05em -0.05em black,
-0.05em 0.05em black,
0.05em -0.05em black,
0.05em 0.05em black;
}
.container {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.flex {
padding: 10px;
border: 3px solid #faf0e5;
color: white;
font-size: 14px;
text-align: center;
position: relative;
margin-bottom: 33px;
}
.flex1 {
min-width: 150px;
}
.flex2 {
font-size: large;
text-align: left;
}
.alert {
margin-bottom: 15px;
padding: 20px;
background-color: orange; /* Red */
color: white;
}
/* The close button */
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
|