blob: cbd3dd6a5cdf53a88ced697ce08709a6f199055e (
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: #400047;
color: white;
border: 1px solid rgba(0, 0, 0, .25);
border-radius: 5px;
padding: 5px 10px;
}
#frame-home-button:hover {
background: #5c0e65;
}
#frame-home-button:active, #frame-home-button:focus {
background: #811f8c;
}
#frame-home-links {
font-size: 12px;
margin-top: 10px;
opacity: .5;
}
.frame-home-link {
color: #5d0e66;
cursor: pointer;
text-decoration: underline;
text-decoration-color: transparent;
}
.frame-home-link:hover {
text-decoration-color: inherit;
}
|