-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstfn.css
More file actions
75 lines (66 loc) · 1.14 KB
/
stfn.css
File metadata and controls
75 lines (66 loc) · 1.14 KB
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
html {
font-family: 'Roboto', Verdana, sans-serif;
line-height: 1.4em;
color: #6B7A8F;
background-color: #DCC7AA;
font-size: 14px;
}
a {
color: inherit;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
section {
max-width: 400px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: stretch;
}
section > div,
section > a,
section > span {
flex: 1;
display: flex;
padding-left: 10px;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin-bottom: 1px;
height: 32px;
color: #DCC7AA;
background-color: #6B7A8F;
}
.disclaimer,
.contacts {
margin-top: 30px;
}
.contacts a {
flex-grow: 1;
}
.copy {
border-radius: 5px;
background-color: #38475C;
cursor: pointer;
padding: 4px;
margin-right: 10px;
}
.copy:hover {
background-color: #051429;
text-decoration: none;
}
.blueberry{
background-color: #6B7A8F;
}
.citrus {
background-color: #F7C331;
}
.apricot {
background-color: #F7882F;
}
.applecore {
background-color: #DCC7AA;
}