123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?php
- /**
- * @file views/default/views_counter/css.php
- * @brief Include the css of views_counter plugin on elgg system
- */
- ?>
- .settings_column {
- width: 200px;
- }
- .reduced_text {
- font-size: 70%;
- }
- .views_counter_left_column {
- float: left;
- width: 49%;
- border-right: solid 1px #CCCCCC;
- }
- .views_counter_right_column {
- float: left;
- width: 49%;
- margin-left: 5px;
- }
- .align_center {
- text-align: center;
- }
- .guid_column {
- width: 35px;
- }
- .title_column {
- width: 190px;
- }
- .counter_column {
- width: 100px;
- }
- .id_column {
- width: 50px;
- border: solid 1px;
- text-align: center;
- }
- .name_column {
- width: 220px;
- border: solid 1px;
- text-align: center;
- }
- .user_name_column {
- width: 220px;
- border: solid 1px;
- text-align: center;
- }
- .views_column {
- width: 80px;
- border: solid 1px;
- text-align: center;
- }
- .first_view_column {
- width: 150px;
- border: solid 1px;
- text-align: center;
- }
- .float_left {
- float: left;
- }
- .float_right {
- float: right;
- }
- .views_counter {
- padding: 0 5px;
- margin: 5px;
- border: 1px solid #CCCCCC;
- -moz-border-radius: 8px;
- background-color: #FFFFFF;
- }
- .container_id_input {
- width: 175px;
- }
|