Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Rounded corners reset
3
***/
4
 
5
/* Reset rounded corners for all elements */
6
 
7
div,
8
input,
9
select,
10
textarea,
11
span,
12
img,
13
table,
14
label,
15
td,
16
th,
17
p,
18
a,
19
button,
20
ul,
21
code,
22
pre,
23
li {
24
    -webkit-border-radius: 0 !important;
25
       -moz-border-radius: 0 !important;
26
            border-radius: 0 !important;
27
}
28
 
29
/* except below bootstrap elements */
30
 
31
.img-circle {
32
    border-radius: 50% !important;
33
}
34
 
35
.img-rounded {
36
    border-radius: 6px !important;
37
}