-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.css
135 lines (121 loc) · 2.29 KB
/
Main.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
body{
background-color: honeydew;
}
ul.nav{
list-style: none;
margin: 0px;
padding: 0px;
text-align: center;
}
li.nav{
display: inline-block;
background-color: hotpink;
margin: 10px 20px 20px 0px;
}
li.nav a{
color: green;
}
li.nav a:hover{
background-color: pink;
text-decoration: none;
}
footer{
background-color: green;
}
header{
background-color: pink;
}
figure{
background-color: paleturquoise;
margin: 0px;
}
figure img{
border-radius:50%;
max-width: 300px;
max-height: 200px;
display: block;
margin-left: auto;
margin-right: auto;
}
figure figcaption{
text-align: center;
}
footer{
text-align: center;
}
#sketchpadapp {
/* Prevent nearby text being highlighted when accidentally dragging mouse outside confines of the canvas */
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.leftside {
width:220px;
height:285px;
margin-left: auto;
margin-right: auto;
background-color:honeydew;
border-radius:4px;
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;
}
.rightside {
float:left;
margin-left:10px;
}
#sketchpad {
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;
height:300px;
width:400px;
border:2px solid #888;
border-radius:4px;
position:relative; /* Necessary for correct mouse co-ords in Firefox */
}
#clearbutton {
font-size: 15px;
padding: 10px;
-webkit-appearance: none;
background: #eee;
border: 1px solid #888;
}
@media screen and (max-width: 400px){
body li a {
font-size: 20px ;
}
}
ul.DogImgLst{
list-style: none;
text-align: center;
}
ul.DogImgLst li{
display: inline;
background-color: whitesmoke;
margin: 30px;
}
ul.DogImgLst li a{
color: rgb(100, 70, 30);
}
img.hide{
max-width: 300px;
max-height: 300px;
margin-left: auto;
margin-right: auto;
display: none;
}
img.show{
max-width: 300px;
max-height: 300px;
display: block;
margin-left: auto;
margin-right: auto;
}