-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (81 loc) · 1.5 KB
/
style.css
File metadata and controls
93 lines (81 loc) · 1.5 KB
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
/* CSS files add styling rules to your content */
body {
font-family: helvetica, arial, sans-serif;
margin:0em;
}
#codearea{
height: 509px;
font-size:10px;
}
#navbar {
border-bottom:1px solid black;
background:#ebebeb;
margin:0em;
}
/*Dropdown*/
.dropbtn {
background-color: #ebebeb;
color: black;
padding: 5px;
font-size: 10px;
border: none;
}
.dropdowntool {
position: relative;
display: inline-block;
}
.dropdowntool-content {
display: none;
position: absolute;
background-color: #ebebeb;
min-width: 160px;
font-size: 10px;
box-shadow: -3px 0.5px 16px 0px rgba(0,0,0,0.1);
z-index: 1;
border:1px solid black;
}
.dropdowntool-content .button {
color: black;
font-size: 10px;
padding: 7px 8px;
text-decoration: none;
display: block;
}
.dropdowntool-content .button-line {
color: black;
font-size: 10px;
padding: 7px 8px;
text-decoration: none;
border-top:1px solid #a6a6a6;
display: block;
}
.dropdowntool-content a:hover {background-color: #f1f1f1}
.dropdowntool:hover .dropdowntool-content {
display: block;
}
.dropdowntool:hover .dropbtn {
background-color: #dedede;
}
.dropbtn:focus {
outline-width: 0;
}
.button:hover{cursor: pointer;}
.button-line:hover;{cursor: pointer;}
/*end*/
.blackness{
background:black;
z-index:100;
width:1000;
height:100;
}
.element{
background:#ebebeb;
color:black;
border:1px solid black;
text-align:center;
position:fixed;
margin-left:25em;
padding:20px;
width:500px;
height:100px;
}