-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
65 lines (65 loc) · 1.01 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
html,
body {
margin: 0;
}
#angular-resolver {
font: normal 14px sans-serif;
margin: 50px 25px 0 25px;
}
.grid {
display: grid;
grid-column-gap: 5px;
grid-template-columns: repeat(5, calc(20% - 4px));
}
img {
width: 100%;
display: block;
}
main {
max-width: 1100px;
margin: 0 auto;
}
p {
margin: 0;
}
.result {
font: normal 12px/20px sans-serif;
background-color: lightgray;
padding: 10px;
border-radius: 5px;
position: relative;
}
.result .message {
position: absolute;
top: 10px;
right: 10px;
font-style: italic;
text-decoration: underline;
}
.result > div {
max-width: 200px;
color: #313b3f;
border-radius: 5px;
overflow: hidden;
}
.website {
font: normal 14px sans-serif;
position: fixed;
width: 100%;
box-sizing: border-box;
top: 0;
letter-spacing: 0.5px;
display: block;
cursor: pointer;
background-color: #313b3f;
padding: 10px;
overflow: auto;
}
.website a {
text-decoration: none;
color: #d9a74a;
float: right;
}
.website span {
color: #d9a74a;
}