blob: 3f6e3d46251d31175371464faf70e55ffd64d457 (
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
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
90
91
92
|
/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
body {
background-color: #444;
color: #555;
margin: 0;
padding: 0 1em;
}
#box {
background-color: white;
border-top: 9px solid rgb(255, 189, 9);
margin: 40px auto;
max-width: 52em;
min-width: 13em;
padding: 50px 0 30px;
position: relative;
}
#exit-button {
background-color: rgb(66, 133, 244);
border: none;
border-radius: 3px;
color: white;
font-weight: bold;
margin-top: 15px;
padding: 15px;
}
h1 {
color: black;
font-size: 160%;
font-weight: normal;
margin: 0 0 .6em 0;
}
.icon {
position: absolute;
}
#inner-box {
margin: 0 80px 0 30px;
}
.main {
margin: 1em 0 0 95px;
}
#proceed-button {
background-color: rgb(66, 133, 244);
border: none;
border-radius: 3px;
color: white;
font-weight: bold;
margin-top: 5px;
padding: 15px;
}
.small {
font-size: 87%;
margin: 1em 0 0 95px;
}
.subtitle {
color: rgb(66, 133, 244);
cursor: pointer;
font-size: 103%;
}
.title {
margin: 0 0 0 95px;
}
.twisty {
cursor: pointer;
float: left;
padding-right: 8px;
padding-top: 3px;
}
#what-to-do {
border-bottom: rgb(240, 240, 240) 2px solid;
padding-bottom: 20px;
padding-top: 2px;
}
#what-to-do-title {
color: black;
font-size: 110%;
}
|