This repository has been archived by the owner on Apr 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
116 lines (106 loc) · 2.6 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body, html {
height: 100%;
background-color: rgb(39, 32, 28);
}
/* Handle the toucan background and main wrapper */
#contentDiv {
padding: 25px;
color: rgb(255, 255, 255);
text-shadow: 1px 1px 2px rgb(0, 0, 0);
background-image: url("images/bg.jpg");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
line-height: 1.8;
}
/* Handle the two boxes */
.boxDiv {
border: none;
border-radius: 8px;
padding: 18px;
width: fit-content;
background-color: rgba(94, 116, 46, 0.5);
margin-bottom: 25px;
}
#allanHeading, #allanAnswer {
display: none;
}
/* The one and only */
#imgAllan {
border-top: 1px solid rgb(0, 48, 0);
border-left: 1px solid rgb(0, 48, 0);
border-right: 1px solid rgb(0, 48, 0);
border-bottom: none;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
margin-top: 10px;
}
/* Input field for question */
#questionInput {
width: 200px;
border: 1px solid rgb(0, 48, 0);
padding: 7px;
text-align: center;
background-color: rgba(232, 255, 181, 0.938);
font-style: italic;
display: block;
}
/* Button to ask a question */
#askQuestionButton {
background-color: rgba(220, 255, 144, 0.6);
border-top: none;
border-left: 1px solid rgb(0, 48, 0);
border-right: 1px solid rgb(0, 48, 0);
border-bottom: 1px solid rgb(0, 48, 0);
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
color: rgb(0, 29, 0);
padding: 10px;
text-shadow: 1px 1px 2px rgb(187, 255, 181);
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 22px;
width: 200px;
cursor: pointer;
line-height: 1.4;
margin-bottom: 15px;
}
#askQuestionButton:hover {
background-color: rgba(240, 255, 208, 0.6);
font-weight: bold;
}
/* Button appears when the answer appears */
#newQuestionButton {
background-color: rgba(220, 255, 144, 0.6);
border-top: 1px solid rgb(0, 48, 0);
border-left: 1px solid rgb(0, 48, 0);
border-right: 1px solid rgb(0, 48, 0);
border-bottom: 1px solid rgb(0, 48, 0);
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
color: rgb(0, 29, 0);
padding: 10px;
text-shadow: 1px 1px 2px rgb(187, 255, 181);
text-align: center;
text-decoration: none;
display: none;
font-size: 22px;
width: 200px;
cursor: pointer;
line-height: 1.4;
margin-bottom: 15px;
}
#newQuestionButton:hover {
background-color: rgba(240, 255, 208, 0.6);
font-weight: bold;
}
/* Credits */
#footerDiv {
position: fixed;
bottom: 0;
right: 20px;
opacity: 0.7;
width: fit-content;
}