~bhdouglass/uappexplorer/trunk

« back to all changes in this revision

Viewing changes to static/main.css

  • Committer: Brian Douglass
  • Date: 2014-11-27 01:27:19 UTC
  • Revision ID: git-v1:2263f696504398b841d218702fe46d025d75b3c6
Restructure app and added scheduling of spider runs via node-schedule rather than cron

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.icon {
2
 
  width: 64px;
3
 
  height: 64px;
4
 
  border-radius: 8px;
5
 
  border: 1px solid #999999;
6
 
}
7
 
 
8
 
.screenshot {
9
 
  width: 200px;
10
 
  height: 300px;
11
 
  border-radius: 8px;
12
 
  border: 1px solid #999999;
13
 
}
14
 
 
15
 
.modal-backdrop {
16
 
  opacity: 0.5;
17
 
}
18
 
 
19
 
.search {
20
 
  width: 300px;
21
 
}
22
 
 
23
 
.clickable {
24
 
  cursor: pointer;
25
 
}
26
 
 
27
 
img.logo {
28
 
  width: 32px;
29
 
  height: 32px;
30
 
  margin-top: -10px;
31
 
  display: inline-block;
32
 
}
33
 
 
34
 
.rotate {
35
 
  -webkit-animation: rotation 2s infinite linear;
36
 
}
37
 
 
38
 
@-webkit-keyframes rotation {
39
 
  from {-webkit-transform: rotate(0deg);}
40
 
  to   {-webkit-transform: rotate(359deg);}
41
 
}
42
 
 
43
 
.center {
44
 
  text-align: center;
45
 
}
46
 
 
47
 
.apps .col-md-2 {
48
 
    margin-bottom: 25px;
49
 
}
50
 
 
51
 
.link {
52
 
  color: inherit;
53
 
  text-decoration: none;
54
 
}
55
 
 
56
 
.link:hover {
57
 
  text-decoration: none;
58
 
}
59
 
 
60
 
.icon-large {
61
 
  width: 96px;
62
 
  height: 96px;
63
 
  border-radius: 8px;
64
 
  border: 1px solid #999999;
65
 
}
66
 
 
67
 
.app .title-block {
68
 
  margin-left: 10px;
69
 
}
70
 
 
71
 
.app .title {
72
 
  margin-top: 0px;
73
 
  margin-bottom: 0px;
74
 
}
75
 
 
76
 
.app .type {
77
 
  margin-top: 10px;
78
 
  margin-left: 10px;
79
 
}
80
 
 
81
 
.app .description {
82
 
  margin-top: 0px;
83
 
}
84
 
 
85
 
select {
86
 
  margin-top: 5px;
87
 
}