-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (97 loc) · 1.6 KB
/
style.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
/*Making sure u #CantTouchThis*/.prompt-div{
position: absolute;
width: 100%;
top: 30%;
}
.name-prompt input:focus{
outline: none;
}
div .prompt-div{
color: black;
height: 6px;
}
/*testing
*/ .its-me{
color: blue;
}
.hello .its-me{
width: 80%;
margin: auto;
}
.name-prompt{
position: relative;
width: 600px;
border: 1px solid cornflowerblue;
margin: auto;
}
/*
I be a comment
*/
.name-input {
position: relative;
display: block;
color: cornflowerblue;
border: none;
border-bottom: solid 1px lightgray;
margin: auto;
margin-top: 20px;
font-size: 12pt;
}
/* Hey,
I also be comment
*/
.name-submit{
display: block;
font-size: 12pt;
border-radius: 0;
background-color: white;
border: 1px solid cornflowerblue;
color: cornflowerblue;
width: 100px;
margin: auto;
margin-top: 15px;
margin-bottom: 15px;
}
.name-submit:hover{
cursor: pointer;
background-color: dodgerblue;
color: white;
}
.quest-prompt{
position: relative;
width: 600px;
margin: auto;
border: 1px solid cornflowerblue;
margin-top: 25px;
font-family: "Courier New", sans-serif;
}
.ans-submit{
margin: 25px;
}
.see-ans{
width: 200px;
}
.quest-prompt .question {
margin: 15px;
}
.quest-prompt label{
display: block;
margin: 15px;
}
.success{
margin: 25px;
color: green;
font-size: 15pt;
}
.error{
margin: 25px;
color: red;
font-size: 15pt;
}
.responses{
margin: 15px;
}
.responses .response{
border: 1px solid cornflowerblue;
padding: 10px;
}