-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (91 loc) · 2.65 KB
/
style.css
File metadata and controls
107 lines (91 loc) · 2.65 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@700&display=swap');
footer{
font-size:20px;
margin:30px;
}
i{
font-size:15px;
padding:20px 10px;
}
a{
text-decoration:none;
color:#34495E;
}
p{
padding: 0px 0px 0px 30px;
font-family: 'Arial';
font-size: 20px;
}
.cabecera{
display:flex;
}
body{
background-color: white;
font-family: 'Arial';
color:#34495E;
}
img{
padding:20px 10px 0px 20px;
height:100px;
width:100px;
}
h1{
font-family: 'Space Mono', monospace;
font-size: 60px;
}
.herramientas{
display: flex;
justify-content: center;
}
ul {
list-style-type: none;
padding: 0px 0px 0px 0px;
/* overflow: hidden; */
border:1px ;
border-style: solid;
border-color: #E5E5E5;
text-decoration: none;
/* position: relative; */
display: flex;
flex-wrap:wrap;
}
li button {
width: 40px;
height: 100%;
color: #666;
background-color: white;
text-align: center;
margin:0px;
border: none;
text-decoration: none;
cursor: pointer;
}
li button:hover:not(.active) {
background-color: #34495E;
color:white;
}
li button.active {
color: white;
background-color: #4CAF50;
transform: translateY(4px);
}
input{
height: 27px;
padding: 4px 7px 0px 10px;
background-color: white;
}
#txtbox{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
width:60%;
padding:10px 10px 10px 10px;
overflow:auto;
background:white ;
margin: auto;
border: 1px solid #D5DBDB;
height: 600px;
color:black;
}
.pie{
font-size: 17px;
}
.datagrid table { border-collapse: collapse; text-align: left; width: 20%; } .datagrid { float: right; font: normal 12px/150% Arial, Helvetica, sans-serif; background: #fff; overflow: hidden; width: 20%; }.datagrid table td, .datagrid table th { padding: 6px 19px; }.datagrid table thead th {background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #34495E), color-stop(1, #34495E) );background:-moz-linear-gradient( center top, #34495E 5%, #34495E 100% );filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#34495E', endColorstr='#34495E');background-color:#34495E; color:#FFFFFF; font-size: 13px; font-weight: normal; } .datagrid table thead th:first-child { border: none; }.datagrid table tbody td { color: #34495E; border-left: 1px solid #E5E5E5;font-size: 12px;font-weight: normal; }.datagrid table tbody .alt td { background: #E5E5E5; color: #34495E; }.datagrid table tbody td:first-child { border-left: none; }.datagrid table tbody tr:last-child td { border-bottom: none; }