mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
18 lines
529 B
CSS
18 lines
529 B
CSS
|
a {
|
||
|
-webkit-border-radius: 5px;
|
||
|
-moz-border-radius: 5px;
|
||
|
border-radius: 5px;
|
||
|
-webkit-border-top-left-radius: 3px;
|
||
|
-moz-border-radius-topleft: 3px;
|
||
|
border-top-left-radius: 3px;
|
||
|
-webkit-border-top-right-radius: 3px;
|
||
|
-moz-border-radius-topright: 3px;
|
||
|
border-top-right-radius: 3px;
|
||
|
-webkit-border-bottom-right-radius: 3px;
|
||
|
-moz-border-radius-bottomright: 3px;
|
||
|
border-bottom-right-radius: 3px;
|
||
|
-webkit-border-bottom-left-radius: 3px;
|
||
|
-moz-border-radius-bottomleft: 3px;
|
||
|
border-bottom-left-radius: 3px;
|
||
|
}
|