forked from bleeptrack/35c3-circuit-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (91 loc) · 1.37 KB
/
style.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
*{
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
body{
width:100%;
height:100%;
background-color: black;
}
#wrap{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
align-items: center;
height: 100%;
padding-right: 3%;
box-sizing: border-box;
}
#settings{
flex-basis: 400px;
width: 400px;
flex-grow: 1;
}
canvas{
display: none;
visibility: hidden;
}
img{
flex-basis: 800px;
width: 800px;
flex-grow: 2;
}
button{
width: 100%;
padding: 4px;
border: 1px solid #00a356;
background-color: #00a356;
margin: 4px;
color: black;
}
button:hover{
border: 1px solid #0084b0;
background-color: #0084b0;
}
button:active{
border: 1px solid #0084b0;
background-color: black;
color: #0084b0;
}
input{
padding: 4px;
margin: 4px;
width: 100%;
background-color: black;
color: #0084b0;
box-sizing: border-box;
}
label{
color: #0084b0;
}
textarea{
padding: 4px;
margin: 4px;
width: 100%;
border: 3px solid #0084b0;
background-color: black;
color: #0084b0;
box-sizing: border-box;
margin-bottom: 12px;
}
a{
color: #0084b0;
}
a:hover{
color: #00a356;
}
p{
color: #0084b0;
text-align: right;
}
#footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: #0084b0;
text-align: center;
margin-bottom: 10px;
}