forked from somnolentsoylent/Badcheese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
113 lines (95 loc) · 1.89 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
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: linear-gradient(230deg, rgb(75, 207, 147), rgb(75, 121, 207), rgb(162, 75, 207)) 0% 0% / 300% 300%;
animation: animation 30s ease infinite;
-webkit-animation: animation 30s ease infinite;
-moz-animation: animation 30s ease infinite;
}
@-webkit-keyframes animation {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@-moz-keyframes animation {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes animation {
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
h1 {
font-size: 3.5em;
font-family: 'Permanent Marker', cursive;
/*color: white;*/
}
canvas {
background-color: aliceblue;
border: 1px solid black;
}
a{
margin: 200px;
color: #681f03;
}
.mid-grid {
margin-top: 20%;
}
.headers {
color:white;
}
.button-black {
color: #fff;
background-color: black;
border-color: black;
}
.button-blue {
color: #fff;
background-color: blue;
border-color: blue;
}
.button-yellow {
color: black;
background-color: yellow;
border-color: yellow;
}
.button-white {
color: black;
background-color: white;
border-color: white;
}
.color-picker {
width: 50%;
left: 24%;
margin: 0 auto;
}
.button-alice {
color: black;
background-color: aliceblue;
border-color: aliceblue;
}
.button-purple {
color: #fff;
background-color: purple;
border-color: purple;
}
.drawmie-input {
text-align: center;
}
.btn-toolbar>.btn, .btn-toolbar>.btn-group, .btn-toolbar>.input-group {
margin-left: 105px !important;
}
.drawmie-join {
margin-top: 25%;
}
.drawmie-button {
margin-top: 10%;
margin-left: 10%
}
.drawmie-title {
font-family: 'Permanent Marker', cursive;
}