-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (75 loc) · 1.21 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
88
89
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #362a2a;
color: #f5b3b3;
display: flex;
justify-content: center;
align-items: center;
width: 360px;
height: 380px;
}
.container {
text-align: center;
padding: 20px;
background-color: #362a2a;
}
.logo {
width: 50px;
height: 50px;
background: url('icons/icon48.png') center/contain no-repeat;
margin: -10px auto 10px;
}
.title{
display: flex;
align-items: column;
justify-content: center;
margin-bottom: 20px;
}
.logo {
width: 48px;
height: 48px;
}
h1 {
color: #f2908f;
margin-bottom: 20px;
}
button {
padding: 10px 20px;
font-size: 14px;
background-color: #f2908f;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #f2908f;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
}
nav ul li {
margin: 10px 0;
}
nav ul li a {
text-decoration: none;
color: #f2908f;
font-size: 14px;
display: block;
padding: 5px 0;
}
nav ul li a:hover {
text-decoration: underline;
}
#status {
margin-top: 20px;
color: #201b1b;
}
footer {
margin-top: 15px;
font-size: 12px;
color: #a98291;
}