Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
 
2
body {
3
    font-family: 'Open Sans', Arial, sans-serif;
4
    background-color: #e4f3f9;
5
    margin: 0;
6
}
7
 
8
a, a:hover, a:visited, a:active {
9
    text-decoration: none;
10
    font-weight: bold;
11
    color: #00a0d2;
12
}
13
h3{
14
    display: inline;
15
}
16
 
17
p{
18
    line-height: 2;
19
}
20
 
21
input{
22
    padding: 12px 24px;
23
    padding-left: 6px;
24
    margin-right: 12px;
25
    max-height: 48px;
26
    background: #fff;
27
}
28
 
29
.btn{
30
    display: inline-block;
31
    margin: 12px 4px;
32
    padding: 12px 24px;
33
    overflow: hidden;
34
    border-width: 0;
35
    outline: none;
36
    font-weight: bolder;
37
    cursor: pointer;
38
    border-radius: 2px;
39
    box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
40
    background-color: #48708e;
41
    color: #ecf0f1;
42
    transition: background-color .3s;
43
}
44
 
45
.btn:hover, .btn:focus {
46
    background-color: #183f5c;
47
}
48
 
49
.h5p-header{
50
    width: 100%;
51
    display: flex;
52
    align-content: baseline;
53
    color: #fff;
54
    background: #383838;
55
    background-image: url('../edusharing/pix/edulogo-white-text.svg');
56
    background-position: right 20px top 20px;
57
    background-size: 120px auto;
58
    background-repeat: no-repeat;
59
    margin-bottom: 24px;
60
    border-bottom: 6px solid #fff;
61
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
62
}
63
 
64
.h5p-header h1{
65
    padding-left: 40px;
66
}
67
 
68
.menu{
69
    display: flex;
70
    align-items: center;
71
    text-decoration: none;
72
    list-style: none;
73
    margin-left: 16px;
74
    padding-right: 20px;
75
    background: #505050;
76
    border-radius: 2px;
77
}
78
 
79
ul{
80
    padding-inline-start: 0;
81
}
82
 
83
.menu li{
84
    margin-left: 20px;
85
}
86
 
87
.menu li a{
88
    color: #ddd;
89
    transition: ease-in-out 0.5s;
90
}
91
 
92
.menu li a:hover{
93
    color: #00a0d2;
94
}
95
 
96
.wrap{
97
    width: 90%;
98
    margin: 0 auto;
99
    background: white;
100
    padding: 24px;
101
    border: 1px solid #bbb;
102
    box-shadow: 2px 2px 8px rgba(0, 0, 0, .15);
103
}
104
 
105
.edu_error{
106
    display: block;
107
    background: lightcoral;
108
    padding: 12px 24px;
109
}
110
 
111
.edu_success{
112
    display: block;
113
    background: lightgreen;
114
    padding: 12px 24px;
115
}
116
 
117
select{
118
    text-align: right;
119
    padding: 10px 20px;
120
    margin-right: 6px;
121
    cursor: pointer;
122
    border-radius: 2px;
123
}
124
 
125
input[type="text"]{
126
    width: 40%;
127
    min-width: 400px;
128
}
129
 
130
.edu_metadata{
131
    background: #f5f5f5;
132
    padding: 8px;
133
    border: 1px solid #bbb;
134
}
135
 
136
.edu_metadata p{
137
    padding: 4px 15px;
138
}
139
.edu_example{
140
    font-size: 14px;
141
    color: #aaa;
142
}
143
 
144
.edu_example a{
145
    color: #00a0d2;
146
}
147
 
148
.edu_endpoint{
149
    display: flex;
150
    flex-wrap: wrap;
151
    align-items: center;
152
}
153
 
154
.edu_export{
155
    font-style: italic;
156
    color: #555;
157
    background: #e8e8e8;
158
    padding: 2px 8px;
159
}
160
 
161
.repo-reg{
162
    margin-top: 40px;
163
    padding-top: 40px;
164
    border-top: 4px dotted #bbb;
165
}
166
 
167
.repo_input{
168
    display: flex;
169
    flex-wrap: wrap;
170
    align-items: center;
171
}
172
 
173
.repo_input_name{
174
    min-width: 250px;
175
}
176
 
177
.repo_input .short_input{
178
    min-width: 50px;
179
    max-width: 194px;
180
}