-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
120 lines (94 loc) · 1.97 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
117
118
119
120
canvas {
border: 2px solid black;
}
/* Dropdown Button */
.dropbtn {
background-color: #3498DB;
color: white;
padding: 16px;
font-size: 20px;
border: none;
cursor: pointer;
border-style: solid;
border-color: rgb(0, 0, 0);
}
.resetbtn {
background-color: #d41a52;
color: white;
padding: 16px;
font-size: 20px;
cursor: pointer;
border-style: solid;
border-color: rgb(0, 0, 0);
}
.header {
padding: 30px;
text-align: center;
background: #FF6F61;
color: white;
font-size: 30px;
}
/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
background-color: #2980B9;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
display: none;
position: absolute;
color: #ddd;
background-color: #2980B9;
font-size: 18px;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #ddd
}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
display: block;
}
body {
background-color: #F7CAC9;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
padding: 5px;
text-align: center;
background: #FF6F61;
color: white;
font-size: 18px;
}
.controls {
border-style: solid;
border-width: thin;
color: white;
padding: 5px;
width: 260px;
height: 280px;
font-size: 20px;
cursor: pointer;
background-color: #FF6F61;
border-style: solid;
border-color: rgb(0, 0, 0);
}