-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (73 loc) · 1.42 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
h1 {
color: red;
}
body {
background-color: green;
}
.container {
margin: auto;
width: 50%;
padding: 10px;
}
.randomButton {
background-color: #4CAF50; /* Green */
border: white;
border-radius: 12px;
color: white;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
outline: none !important;
}
.randomButton:hover{
background-color: white;
color: #4CAF50;
text-decoration:none;
}
.submitButton {
background-color: #4CAF50; /* Green */
border: white;
border-radius: 12px;
color: white;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
outline: none !important;
}
.submitButton:hover{
background-color: white;
color: #4CAF50;
text-decoration:none;
}
.responses-a{
color: black;
text-decoration: none !important;
padding: 0; margin: 0;
width: 100%; height: 100%;
}
.responses-a:hover {
color: black;
text-decoration: none;
}
.title{
padding: 0;
margin: 0;
}
.responses-div{
display: none;
width: 75%;
margin: 15px; margin-left: 0px;
padding: 5px;
background-color: white;
border: 2px black solid;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
.responses-div:hover{
background-color: #9FF781 !important;
transform: scale(1.01, 1.01);
transition: transform .1s;
}