@@ -1,113 +1,106 | |||||
1 | from django.db import models No newline at end of file |
|
1 | from django.db import models | |
2 | from django.utils import timezone No newline at end of file |
|
2 | from django.utils import timezone | |
3 |
|
3 | |||
No newline at end of file |
|
4 | class Profile(models.Model): No newline at end of file | ||
4 | class profileAntenna(models.Model): No newline at end of file |
|
|||
5 | No newline at end of file |
|
5 | ||
6 | name = models.CharField(max_length=250) No newline at end of file |
|
6 | name = models.CharField(max_length=250) | |
7 | date_create = models.DateTimeField() No newline at end of file |
|
7 | date_create = models.DateTimeField() | |
8 | date_modified = models.DateTimeField(null=True) No newline at end of file |
|
8 | date_modified = models.DateTimeField(null=True) | |
9 | hits = models.PositiveIntegerField() No newline at end of file |
|
9 | hits = models.PositiveIntegerField() | |
10 | state = models.PositiveSmallIntegerField() No newline at end of file |
|
10 | state = models.PositiveSmallIntegerField() | |
11 | No newline at end of file |
|
11 | ||
12 | class Meta: No newline at end of file |
|
12 | class Meta: | |
13 | db_table = "abs_profile_antenna" |
|
13 | db_table = "abs_profile_antenna" | |
No newline at end of file |
|
||||
14 | verbose_name = "Profile of Configuration" |
|
|||
No newline at end of file |
|
||||
15 | verbose_name_plural = "Profiles of Configuration" No newline at end of file |
|
|||
16 | No newline at end of file |
|
14 | ||
17 | def save(self): No newline at end of file |
|
15 | def save(self): | |
18 | if self.pk is None: No newline at end of file |
|
16 | if self.pk is None: | |
19 | self.date_create = timezone.now() No newline at end of file |
|
17 | self.date_create = timezone.now() | |
20 | self.hits = 0 No newline at end of file |
|
18 | self.hits = 0 | |
21 | self.state = 1 No newline at end of file |
|
19 | self.state = 1 | |
22 | else: No newline at end of file |
|
20 | else: | |
23 | self.date_modified = timezone.now() |
|
21 | self.date_modified = timezone.now() | |
No newline at end of file |
|
22 | super(Profile, self).save() No newline at end of file | ||
24 | super(profileAntenna, self).save() No newline at end of file |
|
|||
25 | No newline at end of file |
|
23 | ||
26 | def __unicode__(self): |
|
24 | def __unicode__(self): | |
No newline at end of file |
|
25 | return u'%s' % self.name No newline at end of file | ||
27 | return u'%s' % self.value No newline at end of file |
|
|||
28 |
|
26 | |||
No newline at end of file |
|
27 | class Pattern(models.Model): No newline at end of file | ||
29 | class patternAntenna(models.Model): No newline at end of file |
|
|||
30 |
|
28 | |||
No newline at end of file |
|
29 | profile = models.ForeignKey(Profile) | ||
31 | profile = models.ForeignKey(profileAntenna) No newline at end of file |
|
No newline at end of file | ||
|
30 | value = models.PositiveIntegerField() No newline at end of file | |||
32 | date_create = models.DateTimeField() No newline at end of file |
|
31 | date_create = models.DateTimeField() | |
33 | date_modified = models.DateTimeField(null=True) No newline at end of file |
|
32 | date_modified = models.DateTimeField(null=True) | |
34 | hits = models.PositiveIntegerField() No newline at end of file |
|
33 | hits = models.PositiveIntegerField() | |
35 | state = models.PositiveSmallIntegerField() No newline at end of file |
|
34 | state = models.PositiveSmallIntegerField() | |
36 | No newline at end of file |
|
35 | ||
37 | class Meta: No newline at end of file |
|
36 | class Meta: | |
38 | db_table = "abs_pattern_antenna" |
|
37 | db_table = "abs_pattern_antenna" | |
No newline at end of file |
|
||||
39 | verbose_name = "Pattern of Antenna" |
|
|||
No newline at end of file |
|
||||
40 | verbose_name_plural = "List of Patterns of Antenna" No newline at end of file |
|
|||
41 |
|
38 | |||
No newline at end of file |
|
39 | def save(self, *args, **kwargs): | ||
42 | def save(self): |
|
No newline at end of file | ||
No newline at end of file |
|
40 | if not self.pk: No newline at end of file | ||
43 | if self.pk is None: No newline at end of file |
|
|||
44 | self.date_create = timezone.now() No newline at end of file |
|
41 | self.date_create = timezone.now() | |
45 | self.hits = 0 No newline at end of file |
|
42 | self.hits = 0 | |
46 | self.state = 1 No newline at end of file |
|
43 | self.state = 1 | |
47 | else: No newline at end of file |
|
44 | else: | |
48 | self.date_modified = timezone.now() |
|
45 | self.date_modified = timezone.now() | |
No newline at end of file |
|
46 | super(Pattern, self).save(*args, **kwargs) No newline at end of file | ||
49 | super(patternAntenna, self).save() No newline at end of file |
|
|||
50 | No newline at end of file |
|
47 | ||
51 | ''' No newline at end of file |
|
48 | ''' | |
52 | def __unicode__(self): No newline at end of file |
|
49 | def __unicode__(self): | |
53 | return u'%s' % self.value No newline at end of file |
|
50 | return u'%s' % self.value | |
54 | ''' No newline at end of file |
|
51 | ''' | |
55 |
|
52 | |||
No newline at end of file |
|
53 | class AntennaUp(models.Model): No newline at end of file | ||
56 | class antennaUp(models.Model): No newline at end of file |
|
|||
57 |
|
54 | |||
No newline at end of file |
|
55 | pattern = models.ForeignKey(Pattern) No newline at end of file | ||
58 | pattern = models.ForeignKey(patternAntenna) No newline at end of file |
|
|||
59 | value = models.CharField(max_length=250) No newline at end of file |
|
56 | value = models.CharField(max_length=250) | |
60 | tx = models.CharField(max_length=250) No newline at end of file |
|
57 | tx = models.CharField(max_length=250) | |
61 | rx = models.CharField(max_length=250) No newline at end of file |
|
58 | rx = models.CharField(max_length=250) | |
62 | ues = models.CharField(max_length=80) No newline at end of file |
|
59 | ues = models.CharField(max_length=80) | |
63 | date_create = models.DateTimeField() No newline at end of file |
|
60 | date_create = models.DateTimeField() | |
64 | date_modified = models.DateTimeField(null=True) No newline at end of file |
|
61 | date_modified = models.DateTimeField(null=True) | |
65 | hits = models.PositiveIntegerField() No newline at end of file |
|
62 | hits = models.PositiveIntegerField() | |
66 | state = models.PositiveSmallIntegerField() No newline at end of file |
|
63 | state = models.PositiveSmallIntegerField() | |
67 | No newline at end of file |
|
64 | ||
68 | class Meta: No newline at end of file |
|
65 | class Meta: | |
69 | db_table = "abs_antenna_up" |
|
66 | db_table = "abs_antenna_up" | |
No newline at end of file |
|
||||
70 | verbose_name = "Antenna Up" |
|
|||
No newline at end of file |
|
||||
71 | verbose_name_plural = "List of Antenna Up" No newline at end of file |
|
|||
72 |
|
67 | |||
No newline at end of file |
|
68 | def save(self, *args, **kwargs): No newline at end of file | ||
73 | def save(self): No newline at end of file |
|
|||
74 | if self.pk is None: No newline at end of file |
|
69 | if self.pk is None: | |
75 | self.date_create = timezone.now() No newline at end of file |
|
70 | self.date_create = timezone.now() | |
76 | self.hits = 0 No newline at end of file |
|
71 | self.hits = 0 | |
77 | self.state = 1 No newline at end of file |
|
72 | self.state = 1 | |
78 | else: No newline at end of file |
|
73 | else: | |
79 | self.date_modified = timezone.now() |
|
74 | self.date_modified = timezone.now() | |
No newline at end of file |
|
75 | super(AntennaUp, self).save(*args, **kwargs) No newline at end of file | ||
80 | super(antennaUp, self).save() No newline at end of file |
|
|||
81 | No newline at end of file |
|
76 | ||
82 | def __unicode__(self): No newline at end of file |
|
77 | def __unicode__(self): | |
83 | return u'%s' % self.value No newline at end of file |
|
78 | return u'%s' % self.value | |
84 | No newline at end of file |
|
79 | ||
85 |
|
80 | |||
No newline at end of file |
|
81 | class AntennaDown(models.Model): No newline at end of file | ||
86 | class antennaDown(models.Model): No newline at end of file |
|
|||
87 |
|
82 | |||
No newline at end of file |
|
83 | pattern = models.ForeignKey(Pattern) No newline at end of file | ||
88 | pattern = models.ForeignKey(patternAntenna) No newline at end of file |
|
|||
89 | value = models.CharField(max_length=250) No newline at end of file |
|
84 | value = models.CharField(max_length=250) | |
90 | tx = models.CharField(max_length=250) No newline at end of file |
|
85 | tx = models.CharField(max_length=250) | |
91 | rx = models.CharField(max_length=250) No newline at end of file |
|
86 | rx = models.CharField(max_length=250) | |
92 | ues = models.CharField(max_length=80) No newline at end of file |
|
87 | ues = models.CharField(max_length=80) | |
93 | date_create = models.DateTimeField() No newline at end of file |
|
88 | date_create = models.DateTimeField() | |
94 | date_modified = models.DateTimeField(null=True) No newline at end of file |
|
89 | date_modified = models.DateTimeField(null=True) | |
95 | hits = models.PositiveIntegerField() No newline at end of file |
|
90 | hits = models.PositiveIntegerField() | |
96 | state = models.PositiveSmallIntegerField() No newline at end of file |
|
91 | state = models.PositiveSmallIntegerField() | |
97 | No newline at end of file |
|
92 | ||
98 | class Meta: No newline at end of file |
|
93 | class Meta: | |
99 | db_table = "abs_antenna_down" |
|
94 | db_table = "abs_antenna_down" | |
No newline at end of file |
|
||||
100 | verbose_name = "Antenna Down" |
|
|||
No newline at end of file |
|
||||
101 | verbose_name_plural = "List of Antenna Down" No newline at end of file |
|
|||
102 |
|
95 | |||
No newline at end of file |
|
96 | def save(self, *args, **kwargs): No newline at end of file | ||
103 | def save(self): No newline at end of file |
|
|||
104 | if self.pk is None: No newline at end of file |
|
97 | if self.pk is None: | |
105 | self.date_create = timezone.now() No newline at end of file |
|
98 | self.date_create = timezone.now() | |
106 | self.hits = 0 No newline at end of file |
|
99 | self.hits = 0 | |
107 | self.state = 1 No newline at end of file |
|
100 | self.state = 1 | |
108 | else: No newline at end of file |
|
101 | else: | |
109 | self.date_modified = timezone.now() |
|
102 | self.date_modified = timezone.now() | |
No newline at end of file |
|
103 | super(AntennaDown, self).save(*args, **kwargs) No newline at end of file | ||
110 | super(antennaDown, self).save() No newline at end of file |
|
|||
111 | No newline at end of file |
|
104 | ||
112 | def __unicode__(self): No newline at end of file |
|
105 | def __unicode__(self): | |
113 | return u'%s' % self.value No newline at end of file |
|
106 | return u'%s' % self.value |
@@ -1,10 +1,11 | |||||
1 | from django.conf.urls import patterns, url No newline at end of file |
|
1 | from django.conf.urls import patterns, url | |
2 | No newline at end of file |
|
2 | ||
3 | urlpatterns = patterns('abscontrol.views', No newline at end of file |
|
3 | urlpatterns = patterns('abscontrol.views', | |
4 | url(r'^$', 'index'), No newline at end of file |
|
4 | url(r'^$', 'index'), | |
5 | url(r'^new/$', 'new'), No newline at end of file |
|
5 | url(r'^new/$', 'new'), | |
6 | url(r'^save/$', 'save'), |
|
6 | url(r'^save/$', 'save'), | |
No newline at end of file |
|
7 | url(r'^view/(?P<profile_id>\d+)/$', 'view'), | ||
7 | url(r'^(?P<profile_id>\d+)/$', 'detail'), No newline at end of file |
|
No newline at end of file | ||
|
8 | #url(r'^(?P<profile_id>\d+)/$', 'detail'), No newline at end of file | |||
8 | #url(r'^(?P<poll_id>\d+)/results/$', 'results'), No newline at end of file |
|
9 | #url(r'^(?P<poll_id>\d+)/results/$', 'results'), | |
9 | #url(r'^(?P<poll_id>\d+)/vote/$', 'vote'), No newline at end of file |
|
10 | #url(r'^(?P<poll_id>\d+)/vote/$', 'vote'), | |
10 | ) No newline at end of file |
|
11 | ) |
@@ -1,49 +1,42 | |||||
1 | from django.shortcuts import render_to_response |
|
1 | from django.shortcuts import render_to_response, redirect | |
No newline at end of file |
|
No newline at end of file | |||
2 | from django.http import HttpResponseRedirect |
|
2 | from abscontrol.models import Profile No newline at end of file | |
No newline at end of file |
|
||||
3 | from django.core.urlresolvers import reverse |
|
|||
No newline at end of file |
|
||||
4 | from django.template import RequestContext |
|
|||
No newline at end of file |
|
||||
5 |
|
||||
No newline at end of file |
|
||||
6 | from abscontrol.models import profileAntenna, patternAntenna, antennaUp, antennaDown No newline at end of file |
|
|||
7 | No newline at end of file |
|
3 | ||
8 | def index(request): No newline at end of file |
|
4 | def index(request): | |
9 | #latest_poll_list = profileAntenna.objects.all().order_by('-pub_date')[:5] |
|
5 | #latest_poll_list = profileAntenna.objects.all().order_by('-pub_date')[:5] | |
No newline at end of file |
|
6 | profile_list = Profile.objects.all() No newline at end of file | ||
10 | profile_list = profileAntenna.objects.all() No newline at end of file |
|
|||
11 | return render_to_response('abscontrol/index.html', {'profile_list': profile_list}) No newline at end of file |
|
7 | return render_to_response('abscontrol/index.html', {'profile_list': profile_list}) | |
12 | No newline at end of file |
|
8 | ||
13 | def new(request): |
|
9 | def new(request): | |
No newline at end of file |
|
10 | profile_list = Profile.objects.all() | ||
14 | #profile_list = profileAntenna.objects.all() |
|
No newline at end of file | ||
No newline at end of file |
|
11 | return render_to_response('abscontrol/new.html', {'profile_list': profile_list}) No newline at end of file | ||
15 | return render_to_response('abscontrol/new.html', {}) No newline at end of file |
|
|||
16 | No newline at end of file |
|
12 | ||
17 | def save(request): |
|
13 | def save(request): | |
No newline at end of file |
|
14 | No newline at end of file | ||
18 | try: No newline at end of file |
|
|||
19 |
|
|
15 | txtProfile = request.POST["txtProfile"] | |
20 |
|
|
16 | ||
21 |
|
|
17 | txtAntennaUp = request.POST["txtAntennaUp"] | |
22 |
|
|
18 | txtTxUp = request.POST["txtTxUp"] | |
23 |
|
|
19 | txtRxUp = request.POST["txtRxUp"] | |
24 |
|
|
20 | txtUesUp = request.POST["txtUesUp"] | |
25 |
|
|
21 | ||
26 |
|
|
22 | txtAntennaDown = request.POST["txtAntennaDown"] | |
27 |
|
|
23 | txtTxDown = request.POST["txtTxDown"] | |
28 |
|
|
24 | txtRxDown = request.POST["txtRxDown"] | |
29 |
|
|
25 | txtUesDown = request.POST["txtUesDown"] | |
30 |
|
|
26 | ||
No newline at end of file |
|
27 | newprofile = Profile(name=txtProfile) | ||
31 | objProfile = profileAntenna(name=txtProfile) |
|
No newline at end of file | ||
No newline at end of file |
|
28 | newprofile.save() No newline at end of file | ||
32 | objProfile.save() No newline at end of file |
|
|||
33 |
|
29 | |||
No newline at end of file |
|
30 | newpattern = newprofile.pattern_set.create(value=1) | ||
34 | profile = profileAntenna.objects.get(pk=objProfile.id) |
|
No newline at end of file | ||
No newline at end of file |
|
31 | newpattern.antennaup_set.create(value=txtAntennaUp, | ||
35 | print profile.id |
|
No newline at end of file | ||
No newline at end of file |
|
32 | tx=txtTxUp,rx=txtRxUp, | ||
36 | newpattern = profile.pattern_set.create() |
|
No newline at end of file | ||
No newline at end of file |
|
33 | ues=txtUesUp) | ||
37 | ''' |
|
No newline at end of file | ||
No newline at end of file |
|
34 | newpattern.antennadown_set.create(value=txtAntennaDown, | ||
38 | pattern = patternAntenna.objects.get(pk=newpattern.id) |
|
No newline at end of file | ||
No newline at end of file |
|
35 | tx=txtTxDown,rx=txtRxDown, | ||
39 | pattern.antennaUp_set.create(value=txtAntennaUp, tx=txtTxUp, rx=txtRxUp, ues=txtUesUp) |
|
No newline at end of file | ||
No newline at end of file |
|
36 | ues=txtUesDown) No newline at end of file | ||
40 | pattern.antennaDown_set.create(value=txtAntennaDown, tx=txtTxDown, rx=txtRxDown, ues=txtUesDown) |
|
|||
No newline at end of file |
|
||||
41 | ''' |
|
|||
No newline at end of file |
|
||||
42 | return HttpResponseRedirect(reverse('abscontrol.views.index')) No newline at end of file |
|
|||
43 |
|
|
37 | ||
No newline at end of file |
|
38 | return redirect('/abscontrol/') No newline at end of file | ||
44 | except: |
|
|||
No newline at end of file |
|
||||
45 | # Redisplay the form |
|
|||
No newline at end of file |
|
||||
46 | return render_to_response('abscontrol/new.html', { |
|
|||
No newline at end of file |
|
||||
47 | 'error_message': "You didn't select a choice.", |
|
|||
No newline at end of file |
|
||||
48 | }, context_instance=RequestContext(request)) No newline at end of file |
|
|||
49 | No newline at end of file |
|
39 | ||
|
40 | def view(request, profile_id): | |||
|
No newline at end of file | ||||
|
41 | pass | |||
|
No newline at end of file | ||||
|
42 | No newline at end of file |
@@ -1,35 +1,97 | |||||
|
1 | @font-face { | |||
|
No newline at end of file | ||||
|
2 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
3 | font-style: normal; | |||
|
No newline at end of file | ||||
|
4 | font-weight: 300; | |||
|
No newline at end of file | ||||
|
5 | src: local('Open Sans Light'), local('OpenSans-Light'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
6 | } | |||
|
No newline at end of file | ||||
|
7 | @font-face { | |||
|
No newline at end of file | ||||
|
8 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
9 | font-style: normal; | |||
|
No newline at end of file | ||||
|
10 | font-weight: 400; | |||
|
No newline at end of file | ||||
|
11 | src: local('Open Sans'), local('OpenSans'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
12 | } | |||
|
No newline at end of file | ||||
|
13 | @font-face { | |||
|
No newline at end of file | ||||
|
14 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
15 | font-style: normal; | |||
|
No newline at end of file | ||||
|
16 | font-weight: 600; | |||
|
No newline at end of file | ||||
|
17 | src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
18 | } | |||
|
No newline at end of file | ||||
|
19 | @font-face { | |||
|
No newline at end of file | ||||
|
20 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
21 | font-style: normal; | |||
|
No newline at end of file | ||||
|
22 | font-weight: 700; | |||
|
No newline at end of file | ||||
|
23 | src: local('Open Sans Bold'), local('OpenSans-Bold'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
24 | } | |||
|
No newline at end of file | ||||
|
25 | @font-face { | |||
|
No newline at end of file | ||||
|
26 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
27 | font-style: normal; | |||
|
No newline at end of file | ||||
|
28 | font-weight: 800; | |||
|
No newline at end of file | ||||
|
29 | src: local('Open Sans Extrabold'), local('OpenSans-Extrabold'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/EInbV5DfGHOiMmvb1Xr-hnhCUOGz7vYGh680lGh-uXM.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
30 | } | |||
|
No newline at end of file | ||||
|
31 | @font-face { | |||
|
No newline at end of file | ||||
|
32 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
33 | font-style: italic; | |||
|
No newline at end of file | ||||
|
34 | font-weight: 300; | |||
|
No newline at end of file | ||||
|
35 | src: local('Open Sans Light Italic'), local('OpenSansLight-Italic'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/PRmiXeptR36kaC0GEAetxh_xHqYgAV9Bl_ZQbYUxnQU.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
36 | } | |||
|
No newline at end of file | ||||
|
37 | @font-face { | |||
|
No newline at end of file | ||||
|
38 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
39 | font-style: italic; | |||
|
No newline at end of file | ||||
|
40 | font-weight: 400; | |||
|
No newline at end of file | ||||
|
41 | src: local('Open Sans Italic'), local('OpenSans-Italic'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/xjAJXh38I15wypJXxuGMBobN6UDyHWBl620a-IRfuBk.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
42 | } | |||
|
No newline at end of file | ||||
|
43 | @font-face { | |||
|
No newline at end of file | ||||
|
44 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
45 | font-style: italic; | |||
|
No newline at end of file | ||||
|
46 | font-weight: 600; | |||
|
No newline at end of file | ||||
|
47 | src: local('Open Sans Semibold Italic'), local('OpenSans-SemiboldItalic'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/PRmiXeptR36kaC0GEAetxn5HxGBcBvicCpTp6spHfNo.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
48 | } | |||
|
No newline at end of file | ||||
|
49 | @font-face { | |||
|
No newline at end of file | ||||
|
50 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
51 | font-style: italic; | |||
|
No newline at end of file | ||||
|
52 | font-weight: 700; | |||
|
No newline at end of file | ||||
|
53 | src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/PRmiXeptR36kaC0GEAetxjqR_3kx9_hJXbbyU8S6IN0.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
54 | } | |||
|
No newline at end of file | ||||
|
55 | @font-face { | |||
|
No newline at end of file | ||||
|
56 | font-family: 'Open Sans'; | |||
|
No newline at end of file | ||||
|
57 | font-style: italic; | |||
|
No newline at end of file | ||||
|
58 | font-weight: 800; | |||
|
No newline at end of file | ||||
|
59 | src: local('Open Sans Extrabold Italic'), local('OpenSans-ExtraboldItalic'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/PRmiXeptR36kaC0GEAetxkCDe67GEgBv_HnyvHTfdew.woff) format('woff'); | |||
|
No newline at end of file | ||||
|
60 | } | |||
|
No newline at end of file | ||||
|
61 | No newline at end of file | |||
1 | body {font-size: 11px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif} No newline at end of file |
|
62 | body {font-size: 11px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif} | |
2 | article, aside, figure, footer, header, hgroup, nav, section { display:block; } No newline at end of file |
|
63 | article, aside, figure, footer, header, hgroup, nav, section { display:block; } | |
3 | header {border: 1px solid #fcc; font-size: 2em; height: 50px; text-align: center; line-height: 50px} No newline at end of file |
|
64 | header {border: 1px solid #fcc; font-size: 2em; height: 50px; text-align: center; line-height: 50px} | |
4 | #schema {margin: 0 auto; width: 980px; border: 1px solid #f00; padding: 10px 10px 10px 10px} No newline at end of file |
|
65 | #schema {margin: 0 auto; width: 980px; border: 1px solid #f00; padding: 10px 10px 10px 10px} | |
5 | #content {border: 1px solid #1cc; margin-top: 5px; margin-bottom: 5px} No newline at end of file |
|
66 | #content {border: 1px solid #1cc; margin-top: 5px; margin-bottom: 5px} | |
6 | #content #leftcolumn {float: left;border: 1px solid #c55; width: 150px; font-family: Monaco;} No newline at end of file |
|
67 | #content #leftcolumn {float: left;border: 1px solid #c55; width: 150px; font-family: Monaco;} | |
7 | #content #maincolumn {float: left; border: 1px solid #000; width: 800px; padding-left: 20px;} No newline at end of file |
|
68 | #content #maincolumn {float: left; border: 1px solid #000; width: 800px; padding-left: 20px;} | |
8 | footer {border: 1px solid #200; font-size: 0.9em; height: 30px; text-align: center; line-height: 20px} No newline at end of file |
|
69 | footer {border: 1px solid #200; font-size: 0.9em; height: 30px; text-align: center; line-height: 20px} | |
9 | No newline at end of file |
|
70 | ||
10 | .cleardivs {clear: both; border: 1px solid #400; height: 0px} No newline at end of file |
|
71 | .cleardivs {clear: both; border: 1px solid #400; height: 0px} | |
11 | No newline at end of file |
|
72 | ||
12 | No newline at end of file |
|
73 | ||
13 | /****************************************************************************************/ No newline at end of file |
|
74 | /****************************************************************************************/ | |
14 | /****** MENU DE NAVEGACION DE PERFILES **********************************/ No newline at end of file |
|
75 | /****** MENU DE NAVEGACION DE PERFILES **********************************/ | |
15 | /****************************************************************************************/ No newline at end of file |
|
76 | /****************************************************************************************/ | |
16 | #content #infoProfiles {border: 1px solid #d00; width: 140px; margin: 0px; padding-top: 2px; padding-bottom: 2px} No newline at end of file |
|
77 | #content #infoProfiles {border: 1px solid #d00; width: 140px; margin: 0px; padding-top: 2px; padding-bottom: 2px} | |
17 | .lblInfo {padding-left: 12px; line-height: 20px;} No newline at end of file |
|
78 | .lblInfo {padding-left: 12px; line-height: 20px;} | |
|
79 | #infoProfiles select {padding-left: 12px; line-height: 20px;margin-left: 12px} No newline at end of file | |||
18 | #content nav {border: 1px solid #c55; width: 140px; margin: 0px; font-family: Monaco; font-size: 1.2em;} No newline at end of file |
|
80 | #content nav {border: 1px solid #c55; width: 140px; margin: 0px; font-family: Monaco; font-size: 1.2em;} | |
19 | #content nav ul{list-style: none; list-style-type: none; margin: 15px 15px 15px 15px; padding-left: 20px; border: 0px solid #eee} No newline at end of file |
|
81 | #content nav ul{list-style: none; list-style-type: none; margin: 15px 15px 15px 15px; padding-left: 20px; border: 0px solid #eee} | |
20 | #content nav ul li{line-height: 20px} No newline at end of file |
|
82 | #content nav ul li{line-height: 20px} | |
21 | No newline at end of file |
|
83 | ||
22 | /****************************************************************************************/ No newline at end of file |
|
84 | /****************************************************************************************/ | |
23 | /******** FORMULARIO DE PERFILES *************************************/ No newline at end of file |
|
85 | /******** FORMULARIO DE PERFILES *************************************/ | |
24 | /****************************************************************************************/ No newline at end of file |
|
86 | /****************************************************************************************/ | |
25 | #divProfile {border: 0px solid #dff; margin: 10px 0px; padding: 10px 10px; width: 500px} No newline at end of file |
|
87 | #divProfile {border: 0px solid #dff; margin: 10px 0px; padding: 10px 10px; width: 500px} | |
26 | .flsAntenna {margin: 10px 0px; width: 750px; padding: 10px 10px} No newline at end of file |
|
88 | .flsAntenna {margin: 10px 0px; width: 750px; padding: 10px 10px} | |
27 | #divPattern textarea,input[type=text],label {font-family: Monaco; font-size: inherit;} No newline at end of file |
|
89 | #divPattern textarea,input[type=text],label {font-family: Monaco; font-size: inherit;} | |
28 | #divPattern input[type=text] {width: 200px} No newline at end of file |
|
90 | #divPattern input[type=text] {width: 200px} | |
29 | #divPattern textarea {resize: none; overflow: hidden} No newline at end of file |
|
91 | #divPattern textarea {resize: none; overflow: hidden} | |
30 | .divAntenna {float: left; margin: 10px; height: 150px} No newline at end of file |
|
92 | .divAntenna {float: left; margin: 10px; height: 150px} | |
31 | .divAntenna label {display: block} No newline at end of file |
|
93 | .divAntenna label {display: block} | |
32 | .divTx {display: block; float: left; margin: 10px; height: 150px} No newline at end of file |
|
94 | .divTx {display: block; float: left; margin: 10px; height: 150px} | |
33 | .divTx label {display: block} No newline at end of file |
|
95 | .divTx label {display: block} | |
34 | .divUes {display: block; margin: 10px} No newline at end of file |
|
96 | .divUes {display: block; margin: 10px} | |
35 | .txtAntenna {max-width: 200px; max-height: 120px} No newline at end of file |
|
97 | .txtAntenna {max-width: 200px; max-height: 120px} |
General Comments 0
You need to be logged in to leave comments.
Login now