-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
126 lines (106 loc) · 2.01 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
121
122
123
124
125
126
/* COLOR PALETTE
BLUE #04ABAE
RED #CC0000
YELLOW #FFE600
SHADOW #9E4C4C
GRAY #ACACAC */
@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap');
body {
background:linear-gradient(99deg, #00a8ab, #84fdff);
font-family: 'Lobster', sans-serif;
padding: 20px 0px;
/* margin: 0 auto; */
/* width: 100vw;
height: 100vh; */
}
.title {
display: flex;
align-items: center;
justify-content: space-evenly;
color: #ffe600;
}
#title2 {
font-size: 60px;
}
.sketch-pad {
width: 800px;
height: 700px;
background-color: #cc0000;
padding-bottom: 75px;
border-radius: 7%;
margin: auto;
box-shadow: inset 4px 10px 10px 4px #7e3030;
}
.container {
display: grid;
width: 700px;
height: 400px;
background-color: #e0e0e0;
border:#acacac solid ;
margin: auto;
}
.container:hover {
cursor: pointer;
}
.cell {
border:#acacacfc solid thin;
}
.buttons {
display: flex;
justify-content: space-evenly;
margin-top: 15px;
transition: all 1.3%;
}
.colorBtn {
width: 75px;
height: 75px;
border-radius: 100%;
background: #FFE600 ;
color: rgb(36, 36, 36);
font-family: "Lobster" , sans-serif;
font-size: large;
}
input {
margin-bottom: 10px;
font-family: sans-serif;
font-size: large;
}
.resize {
display: flex;
flex-direction: column;
align-items:center;
margin-top: 20px;
}
.sizeBtn {
background:linear-gradient(180deg, #FFE600, #fff9bf );
font-family: 'lobster' , sans-serif;
font-size: x-large;
border-radius: 5px;
width: 100px;
}
button:hover {
/* background-color: white; */
cursor:pointer;
}
button:active {
box-shadow: inset 1px 1px 1px 3px #534b00 ;
}
.colorBtn:focus {
background-color: #fff9cd;
}
.footer {
font-family: 'Rock Salt', 'Lobster';
text-align: center;
margin-top: 20px;
color: black;
font-weight: 900;
}
a {
text-decoration: none;
color: #cc0000;
}
@media only screen and (max-width: 1080px) {
.header {
width: 800;
}
}