blob: 82f171a835870eb76bfcb9c1a28e32eddc54e35e (
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
|
#frame-home-intro {
margin-top: 40px;
text-align: center;
padding: 0 10px;
}
#frame-home-logo {
width: 128px;
}
#frame-home-welcome {
font-size: 30px;
}
#frame-home-tagline {
font-size: 18px;
}
#frame-home-button {
margin-top: 10px;
background: #002e47;
color: white;
border: 1px solid rgba(0, 0, 0, .25);
border-radius: 5px;
padding: 5px 10px;
}
#frame-home-button:hover {
background: #0e4665;
}
#frame-home-button:active, #frame-home-button:focus {
background: #1f648b;
}
#frame-home-links {
font-size: 12px;
margin-top: 10px;
opacity: .5;
}
.frame-home-link {
color: #0e4665;
cursor: pointer;
text-decoration: underline;
text-decoration-color: transparent;
}
.frame-home-link:hover {
text-decoration-color: inherit;
}
|