-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.css
72 lines (59 loc) · 1.01 KB
/
main.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
html {
height: 100%;
}
body {
background-color: #F6F6F6;
height: 100%;
margin: 0;
}
h3 {
font-family: "Lucida", Lucida, monospace;
text-align: left;
}
.text {
font-family: "Lucida", Lucida, monospace;
font-size: 11px;
text-align: center;
}
h5 {
font-family: "Lucida", Lucida, monospace;
font-size: 20px;
}
.button {
text-align: center;
}
.button button {
border-color: #9C123E;
color: #9C123E;
cursor: pointer;
padding: 10px 30px;
}
.button button:hover {
background-color: #9C123E;
color: white;
padding: 10px 30px;
}
.container {
text-align: center;
}
.description {
font-family: "Lucida", Lucida, monospace;
font-size: 16px;
width: 600px;
margin: 0 auto;
display: block;
text-align: left;
}
.logo {
margin: 0 auto;
display: block;
height: 100px;
padding: 30px;
}
.title {
background: black;
color: white;
display: flex;
align-items: center;
justify-content: center;
}