-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvec.css
More file actions
53 lines (45 loc) · 886 Bytes
/
vec.css
File metadata and controls
53 lines (45 loc) · 886 Bytes
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
body{
background-color: rgb(200,200,200);
}
input[type=text]{
background-color: rgb(100,100,100);
color: rgb(200,200,200);
border: none;
border-bottom: 4px solid darkgreen;
font-size: 20;
padding: 5;
}
input[type=text]:hover{
background-color: rgb(150,150,150);
}
button{
background-color: rgb(100,100,100);
color: rgb(200,200,200);
border: none;
border-bottom: 4px solid darkgreen;
font-size: 20;
padding: 5;
}
button:hover{
background-color: rgb(150,150,150);
}
.zoom{
padding: none;
font-size: 10;
border: 5px solid darkgreen;
}
textarea{
background-color: rgb(100,100,100);
color: rgb(200,200,200);
border: none;
border-bottom: 4px solid darkgreen;
font-size: 20;
padding: 5;
}
textarea:hover{
background-color: rgb(150,150,150);
}
.graph{
box-sizing: border-box;
box-shadow: 0px 0px 0px grey;
}