social_stream 0.3.6 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/Gemfile +6 -0
- data/app/controllers/api_controller.rb +39 -0
- data/app/controllers/frontpage_controller.rb +2 -0
- data/app/controllers/groups_controller.rb +8 -2
- data/app/controllers/likes_controller.rb +9 -29
- data/app/controllers/logos_controller.rb +21 -0
- data/app/controllers/mailbox/conversation_controller.rb +110 -0
- data/app/controllers/mailbox_controller.rb +35 -0
- data/app/controllers/posts_controller.rb +2 -0
- data/app/controllers/profiles_controller.rb +3 -0
- data/app/controllers/ties_controller.rb +10 -0
- data/app/controllers/users_controller.rb +5 -5
- data/app/helpers/groups_helper.rb +0 -2
- data/app/helpers/subjects_helper.rb +11 -0
- data/app/helpers/ties_helper.rb +1 -1
- data/app/models/activity.rb +24 -1
- data/app/models/activity_object.rb +10 -0
- data/app/models/activity_object_activity.rb +10 -0
- data/app/models/actor.rb +87 -60
- data/app/models/group.rb +10 -4
- data/app/models/like.rb +34 -0
- data/app/models/logo.rb +51 -0
- data/app/models/permission.rb +7 -5
- data/app/models/profile.rb +24 -8
- data/app/models/tie.rb +15 -2
- data/app/models/user.rb +2 -2
- data/app/views/activities/_activities.html.erb +1 -1
- data/app/views/activities/_new.html.erb +12 -7
- data/app/views/api/activity_atom_feed.atom.builder +40 -0
- data/app/views/comments/_new.html.erb +1 -1
- data/app/views/devise/passwords/edit.html.erb +21 -0
- data/app/views/devise/passwords/new.html.erb +16 -0
- data/app/views/devise/registrations/new.html.erb +35 -19
- data/app/views/devise/sessions/new.html.erb +30 -0
- data/app/views/frontpage/_header.html.erb +18 -20
- data/app/views/frontpage/_search.html.erb +13 -0
- data/app/views/frontpage/_sponsor.html.erb +12 -13
- data/app/views/frontpage/index.html.erb +88 -80
- data/app/views/groups/_group.html.erb +2 -6
- data/app/views/groups/_index.html.erb +22 -25
- data/app/views/groups/_logo.html.erb +1 -1
- data/app/views/groups/_new.html.erb +56 -39
- data/app/views/groups/_profile.html.erb +142 -0
- data/app/views/groups/_sidebar_index.html.erb +73 -0
- data/app/views/groups/{_middle_show.html.erb → _sidebar_show.html.erb} +2 -2
- data/app/views/groups/_tabs.html.erb +37 -31
- data/app/views/groups/_toolbar_show.html.erb +12 -0
- data/app/views/groups/edit.html.erb +136 -0
- data/app/views/groups/index.html.erb +47 -46
- data/app/views/groups/new.html.erb +2 -0
- data/app/views/groups/show.html.erb +9 -4
- data/app/views/groups/update.js.erb +39 -0
- data/app/views/home/_groups.html.erb +4 -5
- data/app/views/{users/_middle_index.html.erb → home/_sidebar.html.erb} +0 -2
- data/app/views/home/index.html.erb +3 -5
- data/app/views/layouts/_footer.html.erb +4 -0
- data/app/views/layouts/_header.erb +29 -37
- data/app/views/layouts/_representation.html.erb +2 -2
- data/app/views/layouts/application.html.erb +47 -74
- data/app/views/layouts/frontpage.html.erb +27 -48
- data/app/views/layouts/test.html +44 -0
- data/app/views/likes/create.js.erb +1 -1
- data/app/views/likes/destroy.js.erb +1 -1
- data/app/views/logos/_form.html.erb +33 -0
- data/app/views/logos/_precrop.html.erb +48 -0
- data/app/views/logos/edit.html.erb +6 -0
- data/app/views/logos/index.html.erb +27 -0
- data/app/views/logos/new.html.erb +20 -0
- data/app/views/logos/show.html.erb +5 -0
- data/app/views/mailbox/_conversation.html.erb +23 -0
- data/app/views/mailbox/_conversations.html.erb +9 -0
- data/app/views/mailbox/_index.html.erb +16 -0
- data/app/views/{messages → mailbox}/_location.html.erb +0 -0
- data/app/views/mailbox/_menu_options.html.erb +19 -0
- data/app/views/mailbox/_show.html.erb +15 -0
- data/app/views/mailbox/conversation/_conversation.html.erb +40 -0
- data/app/views/mailbox/conversation/_form.html.erb +54 -0
- data/app/views/mailbox/conversation/_location.html.erb +3 -0
- data/app/views/mailbox/conversation/_new.html.erb +19 -0
- data/app/views/mailbox/conversation/_show.html.erb +27 -0
- data/app/views/mailbox/conversation/edit.html.erb +6 -0
- data/app/views/mailbox/conversation/new.html.erb +10 -0
- data/app/views/mailbox/conversation/new.js.erb +1 -0
- data/app/views/mailbox/conversation/show.html.erb +1 -0
- data/app/views/{messages → mailbox}/edit.html.erb +0 -0
- data/app/views/mailbox/index.html.erb +10 -0
- data/app/views/{messages → mailbox}/index.js.erb +0 -0
- data/app/views/mailbox/new.html.erb +14 -0
- data/app/views/mailbox/show.html.erb +11 -0
- data/app/views/mailbox/show.js.erb +1 -0
- data/app/views/menu/_group.html.erb +15 -0
- data/{lib/generators/social_stream/templates/public/stylesheets/users.css → app/views/menu/_home_user.html.erb} +0 -0
- data/app/views/menu/_options.html.erb +11 -0
- data/app/views/menu/_services.html.erb +11 -0
- data/app/views/menu/_tiesGroup.html.erb +14 -0
- data/app/views/menu/_tiesUser.html.erb +11 -0
- data/app/views/menu/_user.html.erb +15 -0
- data/app/views/profiles/show.html.erb +1 -0
- data/app/views/subjects/_contacts.html.erb +8 -9
- data/app/views/subjects/_menu_options.html.erb +14 -0
- data/app/views/subjects/_toolbar.html.erb +15 -0
- data/app/views/ties/_new.html.erb +3 -2
- data/app/views/ties/_pendings.html.erb +7 -12
- data/app/views/ties/_suggestions.html.erb +12 -12
- data/app/views/ties/_tie.html.erb +9 -7
- data/app/views/ties/new.js.erb +1 -2
- data/app/views/users/_groups.html.erb +4 -3
- data/app/views/users/_index.html.erb +24 -22
- data/app/views/users/_logo.html.erb +1 -1
- data/app/views/users/_profile.html.erb +167 -164
- data/app/views/users/_sidebar_index.html.erb +6 -0
- data/app/views/users/{_middle_show.html.erb → _sidebar_show.html.erb} +0 -0
- data/app/views/users/_toolbar_show.html.erb +17 -0
- data/app/views/users/edit.html.erb +193 -165
- data/app/views/users/index.html.erb +34 -47
- data/{spec/dummy/public/stylesheets/.gitkeep → app/views/users/info.html.erb} +0 -0
- data/app/views/users/show.html.erb +4 -4
- data/app/views/users/show.xml.builder +28 -0
- data/app/views/users/update.js.erb +3 -1
- data/config/locales/en.yml +88 -9
- data/config/routes.rb +30 -14
- data/lib/generators/social_stream/install_generator.rb +8 -2
- data/lib/generators/social_stream/templates/migration.rb +75 -81
- data/lib/generators/social_stream/templates/public/images/{frontpage/facebook.png → btn/1-facebook.png} +0 -0
- data/lib/generators/social_stream/templates/public/images/btn/edit.png +0 -0
- data/lib/generators/social_stream/templates/public/images/btn/facebook.png +0 -0
- data/lib/generators/social_stream/templates/public/images/btn/linkedin.png +0 -0
- data/lib/generators/social_stream/templates/public/images/btn/twitter-follow-icon.png +0 -0
- data/lib/generators/social_stream/templates/public/images/btn/twitter.png +0 -0
- data/lib/generators/social_stream/templates/public/images/frontpage/collaborate.png +0 -0
- data/lib/generators/social_stream/templates/public/images/frontpage/meet.png +0 -0
- data/lib/generators/social_stream/templates/public/images/frontpage/share.png +0 -0
- data/lib/generators/social_stream/templates/public/images/icons/favicon.ico +0 -0
- data/lib/generators/social_stream/templates/public/images/logo.png +0 -0
- data/lib/generators/social_stream/templates/public/images/w3c_css.png +0 -0
- data/lib/generators/social_stream/templates/public/images/w3c_xhtml.png +0 -0
- data/lib/generators/social_stream/templates/public/javascripts/jquery-ui-1.8.4.custom.min.js +3 -3
- data/lib/generators/social_stream/templates/public/javascripts/jquery-ui-personalized-1.5.2.packed.js +1 -0
- data/lib/generators/social_stream/templates/public/javascripts/jquery-ui.min.js +3 -3
- data/lib/generators/social_stream/templates/public/javascripts/jquery.Jcrop.min.js +163 -0
- data/lib/generators/social_stream/templates/public/javascripts/jquery.fcbkcomplete.min.js +76 -76
- data/lib/generators/social_stream/templates/public/javascripts/jquery.min.js +156 -5
- data/lib/generators/social_stream/templates/public/javascripts/main.js +9 -0
- data/lib/generators/social_stream/templates/public/javascripts/menu-collapsed.js +42 -0
- data/lib/generators/social_stream/templates/public/javascripts/menu.js +1 -1
- data/lib/generators/social_stream/templates/public/javascripts/rails.js +30 -29
- data/lib/generators/social_stream/templates/public/javascripts/superfish.js +121 -0
- data/lib/generators/social_stream/templates/public/stylesheets/default/activities.css +72 -0
- data/lib/generators/social_stream/templates/public/stylesheets/default/base.css +150 -0
- data/lib/generators/social_stream/templates/public/stylesheets/default/carousel.css +23 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{fcbkComplete.css → default/fcbkComplete.css} +2 -2
- data/lib/generators/social_stream/templates/public/stylesheets/default/footer.css +25 -0
- data/lib/generators/social_stream/templates/public/stylesheets/default/frontpage.css +54 -0
- data/lib/generators/social_stream/templates/public/stylesheets/default/header.css +44 -0
- data/lib/generators/social_stream/templates/public/stylesheets/default/home.css +44 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-icons_222222_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-icons_454545_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-icons_888888_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{images → default/images}/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/default/jqcloud.css +15 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{jquery-ui.css → default/jquery-ui.css} +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/default/jquery.Jcrop.css +35 -0
- data/lib/generators/social_stream/templates/public/stylesheets/default/menu.css +33 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-icons_222222_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-icons_454545_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-icons_888888_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/jquery-ui-1.7.3.custom.css +0 -0
- data/lib/generators/social_stream/templates/public/stylesheets/{smoothness → default/smoothness}/jquery-ui-1.8.4.custom.css +0 -0
- data/lib/social_stream.rb +11 -2
- data/lib/social_stream/ability.rb +21 -3
- data/lib/social_stream/models/object.rb +5 -3
- data/lib/social_stream/models/subject.rb +50 -31
- data/lib/social_stream/rails.rb +5 -0
- data/lib/social_stream/test_helpers.rb +11 -0
- data/lib/social_stream/test_helpers/controllers.rb +64 -0
- data/lib/social_stream/version.rb +1 -1
- data/lib/tasks/db/populate.rake +110 -25
- data/social_stream.gemspec +7 -1
- data/spec/controllers/contacts_controller_spec.rb +1 -1
- data/spec/controllers/groups_controller_spec.rb +8 -0
- data/spec/controllers/home_controller_spec.rb +15 -0
- data/spec/controllers/likes_controller_spec.rb +29 -0
- data/spec/controllers/posts_controller_spec.rb +41 -0
- data/spec/controllers/profiles_controller_spec.rb +46 -0
- data/spec/controllers/users_controller_spec.rb +2 -2
- data/spec/dummy/.gitignore +4 -0
- data/spec/dummy/config/database.yml +8 -0
- data/spec/dummy/config/environments/test_pg.rb +35 -0
- data/spec/dummy/config/routes.rb +2 -0
- data/spec/factories/group.rb +1 -1
- data/spec/integration/navigation_spec.rb +1 -1
- data/spec/models/actor_spec.rb +4 -4
- data/spec/models/user_spec.rb +2 -2
- data/spec/spec_helper.rb +1 -1
- data/spec/support/db.rb +7 -0
- metadata +198 -116
- data/app/controllers/messages_controller.rb +0 -3
- data/app/models/message.rb +0 -2
- data/app/views/groups/_middle_index.html.erb +0 -74
- data/app/views/groups/_right_index.html.erb +0 -19
- data/app/views/groups/_right_show.html.erb +0 -8
- data/app/views/home/_middle.html.erb +0 -4
- data/app/views/home/_options.html.erb +0 -8
- data/app/views/home/_right.html.erb +0 -17
- data/app/views/messages/_form.html.erb +0 -24
- data/app/views/messages/_index.html.erb +0 -24
- data/app/views/messages/_message.html.erb +0 -17
- data/app/views/messages/_messages.html.erb +0 -2
- data/app/views/messages/index.html.erb +0 -1
- data/app/views/messages/new.html.erb +0 -14
- data/app/views/messages/show.html.erb +0 -21
- data/app/views/users/_menu.html.erb +0 -7
- data/app/views/users/_options.html.erb +0 -5
- data/app/views/users/_right_index.html.erb +0 -19
- data/app/views/users/_right_show.html.erb +0 -14
- data/lib/generators/social_stream/templates/public/images/btn/btn_share.png +0 -0
- data/lib/generators/social_stream/templates/public/images/favicon.ico +0 -0
- data/lib/generators/social_stream/templates/public/images/frontpage/collaborate.gif +0 -0
- data/lib/generators/social_stream/templates/public/images/frontpage/meet.gif +0 -0
- data/lib/generators/social_stream/templates/public/images/frontpage/share.gif +0 -0
- data/lib/generators/social_stream/templates/public/javascripts/hoverIntent.js +0 -84
- data/lib/generators/social_stream/templates/public/stylesheets/activities.css +0 -235
- data/lib/generators/social_stream/templates/public/stylesheets/base.css +0 -68
- data/lib/generators/social_stream/templates/public/stylesheets/boxy.css +0 -49
- data/lib/generators/social_stream/templates/public/stylesheets/browse.css +0 -162
- data/lib/generators/social_stream/templates/public/stylesheets/carousel.css +0 -57
- data/lib/generators/social_stream/templates/public/stylesheets/edit_user.css +0 -104
- data/lib/generators/social_stream/templates/public/stylesheets/frontpage.css +0 -708
- data/lib/generators/social_stream/templates/public/stylesheets/header.css +0 -116
- data/lib/generators/social_stream/templates/public/stylesheets/home.css +0 -121
- data/lib/generators/social_stream/templates/public/stylesheets/index.css +0 -625
- data/lib/generators/social_stream/templates/public/stylesheets/jqcloud.css +0 -62
- data/lib/generators/social_stream/templates/public/stylesheets/menu.css +0 -83
- data/lib/generators/social_stream/templates/public/stylesheets/message.css +0 -46
- data/lib/generators/social_stream/templates/public/stylesheets/middle.css +0 -113
- data/lib/generators/social_stream/templates/public/stylesheets/right.css +0 -58
- data/lib/generators/social_stream/templates/public/stylesheets/social_stream.css +0 -78
- data/lib/generators/social_stream/templates/public/stylesheets/ui.dropdownchecklist.css +0 -21
- data/spec/dummy/db/.gitignore +0 -2
- data/spec/dummy/log/.gitignore +0 -1
- data/spec/dummy/public/javascripts/application.js +0 -2
- data/spec/dummy/public/javascripts/controls.js +0 -965
- data/spec/dummy/public/javascripts/dragdrop.js +0 -974
- data/spec/dummy/public/javascripts/effects.js +0 -1123
- data/spec/dummy/public/javascripts/prototype.js +0 -6001
- data/spec/dummy/public/javascripts/rails.js +0 -175
@@ -1,116 +0,0 @@
|
|
1
|
-
/*******************************header *************************************/
|
2
|
-
#headerFront {
|
3
|
-
width: 100%;
|
4
|
-
padding: 0;
|
5
|
-
background: #1F4A75;
|
6
|
-
}
|
7
|
-
|
8
|
-
#menu_top {
|
9
|
-
width: 960px;
|
10
|
-
margin-left: auto;
|
11
|
-
margin-right: auto;
|
12
|
-
}
|
13
|
-
|
14
|
-
.banner_top {
|
15
|
-
width: 960px;
|
16
|
-
height: 27px;
|
17
|
-
margin-left: auto;
|
18
|
-
margin-right: auto;
|
19
|
-
padding-top: 3px;
|
20
|
-
position: relative;
|
21
|
-
}
|
22
|
-
|
23
|
-
#headerFront {
|
24
|
-
width: 100%;
|
25
|
-
padding: 2px 0px 0px 0px;
|
26
|
-
background: #1F4A75;
|
27
|
-
height: 27px;
|
28
|
-
}
|
29
|
-
|
30
|
-
#logo_vcc {
|
31
|
-
padding: 0px 0px 0px 4px;
|
32
|
-
}
|
33
|
-
|
34
|
-
#logo_txt {
|
35
|
-
color: #fff;
|
36
|
-
display: inline;
|
37
|
-
vertical-align: top;
|
38
|
-
padding-top: 2px;
|
39
|
-
}
|
40
|
-
|
41
|
-
#space_logo {
|
42
|
-
width: 60%;
|
43
|
-
display: inline;
|
44
|
-
}
|
45
|
-
|
46
|
-
#header_left {
|
47
|
-
left: 0px;
|
48
|
-
float: left;
|
49
|
-
padding-left: 5px;
|
50
|
-
}
|
51
|
-
|
52
|
-
#header_right {
|
53
|
-
float: right;
|
54
|
-
right: 0px;
|
55
|
-
padding-right: 10px;
|
56
|
-
display: inline-block;
|
57
|
-
}
|
58
|
-
#representation {
|
59
|
-
display: inline;
|
60
|
-
}
|
61
|
-
|
62
|
-
|
63
|
-
.btn_config {
|
64
|
-
vertical-align: top;
|
65
|
-
padding-bottom: 0px;
|
66
|
-
padding-left: 6px;
|
67
|
-
display: inline;
|
68
|
-
}
|
69
|
-
|
70
|
-
.txt_config {
|
71
|
-
color: #fff;
|
72
|
-
vertical-align: top;
|
73
|
-
display: inline;
|
74
|
-
padding-top: 2px;
|
75
|
-
border-right: thin solid;
|
76
|
-
padding-right: 3px;
|
77
|
-
}
|
78
|
-
|
79
|
-
.txt_config2 {
|
80
|
-
color: #fff;
|
81
|
-
vertical-align: top;
|
82
|
-
display: inline;
|
83
|
-
padding-top: 2px;
|
84
|
-
padding-right: 3px;
|
85
|
-
}
|
86
|
-
|
87
|
-
#txt_find {
|
88
|
-
color: #fff;
|
89
|
-
vertical-align: top;
|
90
|
-
display: inline;
|
91
|
-
padding-top: 2px;
|
92
|
-
padding-right: 3px;
|
93
|
-
}
|
94
|
-
|
95
|
-
#find_form {
|
96
|
-
color: #fff;
|
97
|
-
vertical-align: top;
|
98
|
-
display: inline-block;
|
99
|
-
padding-top: 2px;
|
100
|
-
padding-right: 3px;
|
101
|
-
}
|
102
|
-
|
103
|
-
#input_find {
|
104
|
-
border-color: #0656a4;
|
105
|
-
padding: 0px;
|
106
|
-
border: 1px inset;
|
107
|
-
}
|
108
|
-
|
109
|
-
.btn_menu {
|
110
|
-
vertical-align: middle;
|
111
|
-
display: inline;
|
112
|
-
}
|
113
|
-
|
114
|
-
#new_representation {
|
115
|
-
display: inline-block;
|
116
|
-
}
|
@@ -1,121 +0,0 @@
|
|
1
|
-
#my_groups {
|
2
|
-
width: 100%;
|
3
|
-
}
|
4
|
-
|
5
|
-
.group{
|
6
|
-
display:inline-block;
|
7
|
-
width:50px;
|
8
|
-
}
|
9
|
-
|
10
|
-
#groups_list {
|
11
|
-
width: 100%;
|
12
|
-
padding-bottom: 5px;
|
13
|
-
text-align: center;
|
14
|
-
display: inline-block;
|
15
|
-
}
|
16
|
-
|
17
|
-
#group_todos {
|
18
|
-
float: right;
|
19
|
-
padding-right: 15px;
|
20
|
-
padding-top: 5px;
|
21
|
-
}
|
22
|
-
|
23
|
-
#groups_title {
|
24
|
-
width: 100%;
|
25
|
-
padding-left: 5px;
|
26
|
-
font-weight: bold;
|
27
|
-
}
|
28
|
-
|
29
|
-
.group_title a{
|
30
|
-
display:block;
|
31
|
-
font-size:9px;
|
32
|
-
text-decoration:none;
|
33
|
-
text-align:center;
|
34
|
-
}
|
35
|
-
|
36
|
-
.group_title a:hover{
|
37
|
-
display:block;
|
38
|
-
text-decoration:underline;
|
39
|
-
}
|
40
|
-
|
41
|
-
.group_content{
|
42
|
-
display:block;
|
43
|
-
text-align:center;
|
44
|
-
}
|
45
|
-
|
46
|
-
.btn_group{
|
47
|
-
vertical-align:top;
|
48
|
-
}
|
49
|
-
|
50
|
-
|
51
|
-
#my_conferences {
|
52
|
-
background-color: #deeff8;
|
53
|
-
/*border-bottom: thin solid #D4E4Ea;*/
|
54
|
-
border-top: thin solid #D4E4Ea;
|
55
|
-
}
|
56
|
-
|
57
|
-
#tabconferences {
|
58
|
-
background-color: #deeff8;
|
59
|
-
}
|
60
|
-
|
61
|
-
.tabconference {
|
62
|
-
margin-top: 2px;
|
63
|
-
/*border-top: thin solid #D4E4EA;*/
|
64
|
-
padding: 2px 0px 2px 0px;
|
65
|
-
}
|
66
|
-
|
67
|
-
.tabconference fondo {
|
68
|
-
background-color: #fff;
|
69
|
-
}
|
70
|
-
|
71
|
-
.tabconference li {
|
72
|
-
display: inline;
|
73
|
-
list-style: none;
|
74
|
-
padding-right: 2px;
|
75
|
-
}
|
76
|
-
|
77
|
-
.tabconference li a {
|
78
|
-
text-decoration: none;
|
79
|
-
padding: 4px 3px;
|
80
|
-
outline: none;
|
81
|
-
}
|
82
|
-
|
83
|
-
.tabconference ul {
|
84
|
-
background: #deeff8;
|
85
|
-
}
|
86
|
-
|
87
|
-
.tabconference li a:hover,.tabconference li.ui-tabs-nav a,.tabconference li.ui-tabs-selected a,.tabconference li a:active
|
88
|
-
{
|
89
|
-
background: #fff;
|
90
|
-
font-weight: bold;
|
91
|
-
text-decoration: none;
|
92
|
-
}
|
93
|
-
|
94
|
-
#title-conferences,#title-top-conferences {
|
95
|
-
text-align: center;
|
96
|
-
}
|
97
|
-
|
98
|
-
.middle {
|
99
|
-
vertical-align: top;
|
100
|
-
}
|
101
|
-
|
102
|
-
.conferencex {
|
103
|
-
font-size: 13px;
|
104
|
-
display: inline-block;
|
105
|
-
padding-top: 5px;
|
106
|
-
vertical-align: inherit;
|
107
|
-
}
|
108
|
-
|
109
|
-
.conference_content {
|
110
|
-
color: #6C6D6F;
|
111
|
-
font-size: 11px;
|
112
|
-
}
|
113
|
-
|
114
|
-
.title_conference {
|
115
|
-
|
116
|
-
}
|
117
|
-
|
118
|
-
#conference_next {
|
119
|
-
float: right;
|
120
|
-
padding-bottom: 60px;
|
121
|
-
}
|
@@ -1,625 +0,0 @@
|
|
1
|
-
/********************************** body *******************************/
|
2
|
-
#wrapper_body {
|
3
|
-
width: 960px;
|
4
|
-
display: table;
|
5
|
-
margin-left: auto;
|
6
|
-
margin-right: auto;
|
7
|
-
background-color: #fff;
|
8
|
-
border-top: thin solid #D4E4EA;y q p
|
9
|
-
}
|
10
|
-
|
11
|
-
#others_conferences {
|
12
|
-
position: fixed;
|
13
|
-
display: inline-block;
|
14
|
-
float: right;
|
15
|
-
text-align: right;
|
16
|
-
}
|
17
|
-
|
18
|
-
.space_center {
|
19
|
-
padding-top: 9px;
|
20
|
-
padding-right: 4px;
|
21
|
-
text-align: center;
|
22
|
-
}
|
23
|
-
|
24
|
-
.space_center_border {
|
25
|
-
padding-top: 8px;
|
26
|
-
padding-right: 4px;
|
27
|
-
border-bottom: thin solid #D4E4EA;
|
28
|
-
}
|
29
|
-
|
30
|
-
/********************************* EFFECT EXPAND BODY TO SIDE *******************/
|
31
|
-
/* Caso Default, size of middle Middle=1, Right=1*/
|
32
|
-
#content {
|
33
|
-
width: 560px;
|
34
|
-
border-right: thin solid #D4E4EA;
|
35
|
-
border-bottom: thin solid #D4E4EA;
|
36
|
-
vertical-align: top;
|
37
|
-
display: table-cell;
|
38
|
-
padding-top: 10px;
|
39
|
-
font-size: 14px;
|
40
|
-
}
|
41
|
-
|
42
|
-
#content_full {
|
43
|
-
width: 694px;
|
44
|
-
border-right: thin solid #D4E4EA;
|
45
|
-
border-bottom: thin solid #D4E4EA;
|
46
|
-
vertical-align: top;
|
47
|
-
display: table-cell;
|
48
|
-
padding-top: 10px;
|
49
|
-
font-size: 14px;
|
50
|
-
}
|
51
|
-
|
52
|
-
#right_full {
|
53
|
-
width: 255px;
|
54
|
-
border-color: #000;
|
55
|
-
vertical-align: top;
|
56
|
-
display: table-cell;
|
57
|
-
padding: 5px 5px 5px 0px;
|
58
|
-
border-left: thin solid #D4E4EA;
|
59
|
-
border-bottom: thin solid #D4E4EA;
|
60
|
-
|
61
|
-
}
|
62
|
-
|
63
|
-
#middle {
|
64
|
-
width: 220px;
|
65
|
-
display: table-cell;
|
66
|
-
vertical-align: top;
|
67
|
-
/*border-bottom: thin solid #D4E4EA;
|
68
|
-
border-left:thin solid #D4E4EA;
|
69
|
-
border-right: thin solid #D4E4EA;*/
|
70
|
-
}
|
71
|
-
|
72
|
-
#right {
|
73
|
-
width: 160px;
|
74
|
-
border-color: #000;
|
75
|
-
vertical-align: top;
|
76
|
-
display: table-cell;
|
77
|
-
padding: 5px 5px 5px 5px;
|
78
|
-
|
79
|
-
}
|
80
|
-
|
81
|
-
#rightContent{
|
82
|
-
border-left: thin solid #D4E4EA;
|
83
|
-
border-bottom: thin solid #D4E4EA;
|
84
|
-
}
|
85
|
-
|
86
|
-
#hiddenMiddle {
|
87
|
-
width: 30px;
|
88
|
-
height: 300px;
|
89
|
-
}
|
90
|
-
|
91
|
-
#hiddenRight {
|
92
|
-
width: 30px;
|
93
|
-
height: 300px;
|
94
|
-
}
|
95
|
-
|
96
|
-
/* Caso A - Change size of middle Middle=0, Right=1*/
|
97
|
-
#content.wideA {
|
98
|
-
width: 794px;
|
99
|
-
}
|
100
|
-
|
101
|
-
#middle.wideA {
|
102
|
-
width: 30px;
|
103
|
-
border-color: #000;
|
104
|
-
}
|
105
|
-
|
106
|
-
#rigth.wideA {
|
107
|
-
width: 136px;
|
108
|
-
border-color: #000;
|
109
|
-
}
|
110
|
-
|
111
|
-
#chat.wideA {
|
112
|
-
width: 60%;
|
113
|
-
height: 221px;
|
114
|
-
display: inline-block;
|
115
|
-
padding: 0px;
|
116
|
-
vertical-align: top;
|
117
|
-
}
|
118
|
-
|
119
|
-
/* Caso B - Change size of middle Middle=0, Right=0*/
|
120
|
-
#content.wideB {
|
121
|
-
width: 896px;
|
122
|
-
}
|
123
|
-
|
124
|
-
#middle.wideB {
|
125
|
-
width: 20px;
|
126
|
-
border-color: #000;
|
127
|
-
}
|
128
|
-
|
129
|
-
#right.wideB {
|
130
|
-
width: 20px;
|
131
|
-
border-left-width: thin;
|
132
|
-
border-color: #000;
|
133
|
-
}
|
134
|
-
|
135
|
-
#chat.wideB {
|
136
|
-
width: 64%;
|
137
|
-
height: 221px;
|
138
|
-
display: inline-block;
|
139
|
-
padding: 0px;
|
140
|
-
vertical-align: top;
|
141
|
-
}
|
142
|
-
|
143
|
-
/* Caso C - Change size of middle Middle=1, Right=0*/
|
144
|
-
#content.wideC {
|
145
|
-
width: 674px;
|
146
|
-
}
|
147
|
-
|
148
|
-
#middle.wideC {
|
149
|
-
width: 256px;
|
150
|
-
}
|
151
|
-
|
152
|
-
#right.wideC {
|
153
|
-
width: 30px;
|
154
|
-
}
|
155
|
-
|
156
|
-
/* Change view sprites */
|
157
|
-
.toolbox {
|
158
|
-
float: right;
|
159
|
-
}
|
160
|
-
|
161
|
-
.toolbox a {
|
162
|
-
width: 30px;
|
163
|
-
height: 20px;
|
164
|
-
float: right;
|
165
|
-
}
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
/********************************ONLINE CONFERENCE DIV*******************/
|
171
|
-
#online_conference {
|
172
|
-
border-top: thin solid #D4E4EA;
|
173
|
-
border-bottom: thin solid #D4E4EA;
|
174
|
-
width: 100%;
|
175
|
-
}
|
176
|
-
|
177
|
-
#keynote {
|
178
|
-
padding-bottom: 4px;
|
179
|
-
padding-top: 4px;
|
180
|
-
padding-left: 4px;
|
181
|
-
}
|
182
|
-
|
183
|
-
#keynote_name {
|
184
|
-
font-size: 13px;
|
185
|
-
font-weight: bold;
|
186
|
-
}
|
187
|
-
|
188
|
-
#video_online {
|
189
|
-
padding: 0px;
|
190
|
-
width: 560px;
|
191
|
-
display: inline;
|
192
|
-
}
|
193
|
-
|
194
|
-
#video {
|
195
|
-
display: inline;
|
196
|
-
padding: 0px;
|
197
|
-
width: 316px;
|
198
|
-
padding-left: 4px;
|
199
|
-
}
|
200
|
-
|
201
|
-
#chat {
|
202
|
-
width: 43%;
|
203
|
-
height: 221px;
|
204
|
-
display: inline-block;
|
205
|
-
padding: 0px;
|
206
|
-
vertical-align: top;
|
207
|
-
}
|
208
|
-
|
209
|
-
#wrapper_online_menu {
|
210
|
-
width: 100%;
|
211
|
-
display: block;
|
212
|
-
padding-top: 5px;
|
213
|
-
padding-bottom: 5px;
|
214
|
-
text-align: center;
|
215
|
-
}
|
216
|
-
|
217
|
-
.btn_menu_online {
|
218
|
-
vertical-align: middle;
|
219
|
-
display: inline;
|
220
|
-
padding-left: 2px;
|
221
|
-
}
|
222
|
-
|
223
|
-
.online-menu,.online-menu * {
|
224
|
-
margin: 0;
|
225
|
-
padding: 0;
|
226
|
-
list-style: none;
|
227
|
-
display: inline-block;
|
228
|
-
font-size: 9px;
|
229
|
-
padding-left: 1px;
|
230
|
-
}
|
231
|
-
|
232
|
-
.online-menu_live,.online-menu_live * {
|
233
|
-
margin: 0;
|
234
|
-
padding: 0;
|
235
|
-
list-style: none;
|
236
|
-
display: inline-block;
|
237
|
-
font-size: 12px;
|
238
|
-
padding-left: 1px;
|
239
|
-
}
|
240
|
-
.online-menu a {
|
241
|
-
text-decoration: none;
|
242
|
-
}
|
243
|
-
|
244
|
-
.online-menu a:hover {
|
245
|
-
text-decoration: underline;
|
246
|
-
}
|
247
|
-
|
248
|
-
#wrapper_sponsors_event {
|
249
|
-
width: 100%;
|
250
|
-
display: block;
|
251
|
-
background-color: #deeff8;
|
252
|
-
padding: 10px 0px 5px 0px;
|
253
|
-
vertical-align: top;
|
254
|
-
text-align: center;
|
255
|
-
}
|
256
|
-
|
257
|
-
.sponsor {
|
258
|
-
padding-left: 16px;
|
259
|
-
}
|
260
|
-
|
261
|
-
#txt_sponsor {
|
262
|
-
display: inline;
|
263
|
-
vertical-align: top;
|
264
|
-
text-align: left;
|
265
|
-
float: left;
|
266
|
-
padding-left: 10px;
|
267
|
-
}
|
268
|
-
|
269
|
-
#content_sponsors {
|
270
|
-
display: inline;
|
271
|
-
}
|
272
|
-
|
273
|
-
#next_sponsor {
|
274
|
-
display: inline;
|
275
|
-
vertical-align: top;
|
276
|
-
text-align: right;
|
277
|
-
float: right;
|
278
|
-
margin-right: 4px;
|
279
|
-
}
|
280
|
-
|
281
|
-
/****************** Activities ************
|
282
|
-
*
|
283
|
-
* Ver Archivo activities.css
|
284
|
-
*
|
285
|
-
* /
|
286
|
-
|
287
|
-
|
288
|
-
/***********************CREATE SPACE ***********/
|
289
|
-
#create_space {
|
290
|
-
padding: 5px 5px 5px 5px;
|
291
|
-
background-color: #deeff8;
|
292
|
-
}
|
293
|
-
|
294
|
-
#input_new_space {
|
295
|
-
border-color: #0656a4;
|
296
|
-
color: #2A3890;
|
297
|
-
border: 1px inset;
|
298
|
-
}
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
/************************** MIDDLE CONTENT ********/
|
304
|
-
.future_conference {
|
305
|
-
padding: 5px 4px 5px 4px;
|
306
|
-
}
|
307
|
-
|
308
|
-
.post_future_conference {
|
309
|
-
display: block;
|
310
|
-
/*padding-bottom: 10px;*/
|
311
|
-
}
|
312
|
-
|
313
|
-
.post_future_conference_border {
|
314
|
-
display: block;
|
315
|
-
border-bottom: thin solid #D4E4EA;
|
316
|
-
padding-bottom: 10px;
|
317
|
-
}
|
318
|
-
|
319
|
-
.future_header {
|
320
|
-
vertical-align: middle;
|
321
|
-
background: transparent url(../images/title_background.png) scroll 0px;
|
322
|
-
padding-left: 10px;
|
323
|
-
display: block;
|
324
|
-
}
|
325
|
-
|
326
|
-
.future_header_suscribed {
|
327
|
-
vertical-align: middle;
|
328
|
-
background: transparent url(../images/title_background.png) scroll 0px;
|
329
|
-
padding-left: 10px;
|
330
|
-
display: block;
|
331
|
-
font-size:12px;
|
332
|
-
}
|
333
|
-
|
334
|
-
.future_picture_icon {
|
335
|
-
margin-top: 2px;
|
336
|
-
}
|
337
|
-
|
338
|
-
.future_text_header {
|
339
|
-
padding-bottom: 2px;
|
340
|
-
display: inline-block;
|
341
|
-
}
|
342
|
-
|
343
|
-
.future_details {
|
344
|
-
|
345
|
-
}
|
346
|
-
|
347
|
-
.title_righ {
|
348
|
-
float: right;
|
349
|
-
padding-right: 5px;
|
350
|
-
padding-top: 3px;
|
351
|
-
}
|
352
|
-
|
353
|
-
.future_content {
|
354
|
-
padding: 5px 0px 5px 0px;
|
355
|
-
display: block;
|
356
|
-
}
|
357
|
-
|
358
|
-
.future_content_center {
|
359
|
-
padding: 5px 0px 5px 0px;
|
360
|
-
display: block;
|
361
|
-
text-align:center;
|
362
|
-
}
|
363
|
-
|
364
|
-
.keynote_future {
|
365
|
-
text-align: center;
|
366
|
-
}
|
367
|
-
|
368
|
-
.future_picture {
|
369
|
-
display: inline-block;
|
370
|
-
width: 67px;
|
371
|
-
vertical-align: middle;
|
372
|
-
padding-top: 5px;
|
373
|
-
height: 50px;
|
374
|
-
}
|
375
|
-
|
376
|
-
.future_description {
|
377
|
-
display: inline-block;
|
378
|
-
width: 66%;
|
379
|
-
vertical-align: top;
|
380
|
-
}
|
381
|
-
|
382
|
-
.future_description_full {
|
383
|
-
display: inline-block;
|
384
|
-
width: 100%;
|
385
|
-
vertical-align: top;
|
386
|
-
text-align: center
|
387
|
-
}
|
388
|
-
|
389
|
-
.future_link a {
|
390
|
-
color: #2A3890;
|
391
|
-
font-weight: bold;
|
392
|
-
font-size: 11px;
|
393
|
-
}
|
394
|
-
|
395
|
-
.future_brief {
|
396
|
-
color: #6C6D6F;
|
397
|
-
}
|
398
|
-
|
399
|
-
.future_footer {
|
400
|
-
float: right;
|
401
|
-
}
|
402
|
-
|
403
|
-
.info_post {
|
404
|
-
/* display: block;*/
|
405
|
-
width: 100%;
|
406
|
-
padding-top: 3px;
|
407
|
-
padding-bottom: 2px;
|
408
|
-
}
|
409
|
-
|
410
|
-
.info_center{
|
411
|
-
display: inline-block;
|
412
|
-
text-justify: auto;
|
413
|
-
color: #000;
|
414
|
-
}
|
415
|
-
|
416
|
-
.info_left {
|
417
|
-
display: inline-block;
|
418
|
-
width: 35%;
|
419
|
-
float: left;
|
420
|
-
}
|
421
|
-
|
422
|
-
.info_right {
|
423
|
-
display: inline-block;
|
424
|
-
width: 50%;
|
425
|
-
color: #000;
|
426
|
-
}
|
427
|
-
|
428
|
-
/*************RIGHT CONTENT *********/
|
429
|
-
#bookmark {
|
430
|
-
text-align: center;
|
431
|
-
}
|
432
|
-
|
433
|
-
#logo {
|
434
|
-
text-align: center;
|
435
|
-
}
|
436
|
-
|
437
|
-
.partner_line {
|
438
|
-
text-align: center;
|
439
|
-
}
|
440
|
-
|
441
|
-
.follower_line {
|
442
|
-
text-align: center;
|
443
|
-
}
|
444
|
-
|
445
|
-
.photo_line {
|
446
|
-
text-align: center;
|
447
|
-
}
|
448
|
-
|
449
|
-
/*********************** footer **********************/
|
450
|
-
|
451
|
-
#footer{width: 960px;margin-left: auto;margin-right: auto;padding: 0;position: relative; text-align:center;
|
452
|
-
|
453
|
-
clear:left;font-size:0.9166em;line-height:1.6363;color:#666;padding:0.75em 0;}
|
454
|
-
#footer ul, #sponsor ul{list-style-type:none;margin:0 0.5em; }
|
455
|
-
#footer ul li,#sponsor ul li{display:inline-block;margin-right:0.25em;position:relative;}
|
456
|
-
#footer ul li#trade_mark,#sponsor ul li#trademark{font-weight:bold;color:#111;}
|
457
|
-
#footer ul li#trade_mark_logo{font-weight:normal;}
|
458
|
-
#footer a, #sponsor a{color:#666;}
|
459
|
-
#footer a:hover, #sponsor a:hover{color:#444;}
|
460
|
-
#footer .icon,#global .icon{margin-bottom:-4px;}
|
461
|
-
#footer-wrapper{background-color:#e1eef5;}
|
462
|
-
#footer_right{font-weight:normal;}
|
463
|
-
#footer_right{ font-size: 10px; line-height: 1.1em;}
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
#footerFront {
|
468
|
-
width: 100%;
|
469
|
-
padding: 0;
|
470
|
-
background: #E1EEF5;
|
471
|
-
}
|
472
|
-
|
473
|
-
.banner_footer {
|
474
|
-
width: 960px;
|
475
|
-
margin-left: auto;
|
476
|
-
margin-right: auto;
|
477
|
-
padding: 0;
|
478
|
-
position: relative;
|
479
|
-
}
|
480
|
-
|
481
|
-
.banner_footer #footer_content {
|
482
|
-
text-align: center;
|
483
|
-
color: #ccc;
|
484
|
-
}
|
485
|
-
|
486
|
-
.banner_footer {
|
487
|
-
width: 960px;
|
488
|
-
color: #0656a4;
|
489
|
-
margin-left: auto;
|
490
|
-
margin-right: auto;
|
491
|
-
padding-top: 2px;
|
492
|
-
position: relative;
|
493
|
-
}
|
494
|
-
|
495
|
-
.banner_footer .a_border {
|
496
|
-
border-right: thin solid;
|
497
|
-
color: #0656a4;
|
498
|
-
padding: 0px 7px;
|
499
|
-
text-decoration: underline;
|
500
|
-
}
|
501
|
-
|
502
|
-
.banner_footer a {
|
503
|
-
color: #0656a4;
|
504
|
-
padding: 0px 7px;
|
505
|
-
text-decoration: underline;
|
506
|
-
}
|
507
|
-
|
508
|
-
#logo_UE {
|
509
|
-
margin-left: 0px;
|
510
|
-
margin-top: 0px;
|
511
|
-
width: 30px;
|
512
|
-
height: 16px;
|
513
|
-
margin-bottom: 0px;
|
514
|
-
display: inline;
|
515
|
-
}
|
516
|
-
|
517
|
-
.option_menu {
|
518
|
-
display: block;
|
519
|
-
vertical-align: top;
|
520
|
-
}
|
521
|
-
|
522
|
-
.text_menu {
|
523
|
-
display: inline;
|
524
|
-
margin-bottom: 3px;
|
525
|
-
vertical-align: top;
|
526
|
-
}
|
527
|
-
|
528
|
-
#construccion{
|
529
|
-
font-size:40px;
|
530
|
-
color:#FF0000;
|
531
|
-
text-align:center;
|
532
|
-
padding-top: 150px;
|
533
|
-
padding-bottom: 300px;
|
534
|
-
}
|
535
|
-
|
536
|
-
|
537
|
-
#by_options{
|
538
|
-
float:right;
|
539
|
-
padding-right: 5px;
|
540
|
-
}
|
541
|
-
#banner_evento{
|
542
|
-
width:100%;
|
543
|
-
padding: 5px;
|
544
|
-
|
545
|
-
}
|
546
|
-
|
547
|
-
|
548
|
-
#event_head{
|
549
|
-
padding:5px;
|
550
|
-
width: 100%;
|
551
|
-
}
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
#event_content{
|
556
|
-
display:inline-block;
|
557
|
-
vertical-align:top;
|
558
|
-
padding:3px;
|
559
|
-
width:90%;
|
560
|
-
}
|
561
|
-
|
562
|
-
#event_time{
|
563
|
-
display:inline-block;
|
564
|
-
}
|
565
|
-
|
566
|
-
.text_black{
|
567
|
-
color:#000;
|
568
|
-
font-weight:bold;
|
569
|
-
}
|
570
|
-
|
571
|
-
#event_description{
|
572
|
-
|
573
|
-
}
|
574
|
-
|
575
|
-
#agend_tools{
|
576
|
-
float:right;
|
577
|
-
}
|
578
|
-
|
579
|
-
|
580
|
-
.subtime_agenda{
|
581
|
-
display:inline-block;
|
582
|
-
}
|
583
|
-
|
584
|
-
.post_agenda{
|
585
|
-
display:inline-block;
|
586
|
-
vertical-align:top;
|
587
|
-
|
588
|
-
}
|
589
|
-
#bold_viewers{
|
590
|
-
font-size:14px;
|
591
|
-
font-weight:bold;
|
592
|
-
}
|
593
|
-
|
594
|
-
#right_live{
|
595
|
-
float:right;
|
596
|
-
width:40%;
|
597
|
-
text-align:right;
|
598
|
-
padding-right:2px;
|
599
|
-
}
|
600
|
-
|
601
|
-
#left_live_menu{
|
602
|
-
width:58%;
|
603
|
-
float:left;
|
604
|
-
text-align:left;
|
605
|
-
padding-left:2px;
|
606
|
-
}
|
607
|
-
|
608
|
-
|
609
|
-
#left_logo{
|
610
|
-
display:inline-block;
|
611
|
-
vertical-align:top;
|
612
|
-
}
|
613
|
-
|
614
|
-
.recomended_videos{
|
615
|
-
display: inline-block;
|
616
|
-
|
617
|
-
}
|
618
|
-
.videos_related_top{
|
619
|
-
vertical-align:top;
|
620
|
-
}
|
621
|
-
|
622
|
-
|
623
|
-
.conferencex_related{
|
624
|
-
padding:5px;
|
625
|
-
}
|