-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
111 lines (100 loc) · 1.64 KB
/
common.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
h1 {
font-size: 2.4em;
font-weight: 700;
margin-bottom: 10px;
}
h2 {
font-size: 1.5em;
font-weight: 300;
margin-top: 10px;
}
h3 {
font-size: 1.5em;
font-weight: 700;
margin-top: 10px;
margin-bottom: 10px;
}
.status-bar {
margin-bottom: 40px;
}
.feature::before {
content: "+";
font-size: 2em;
color: #BBB;
}
.version {
float:right;
margin-top: 7px;
color: #BBB;
}
.grey-bar {
background: #f5f5f5
}
#menu {
display: inline;
margin-right: 20px;
}
#menu .dropdown-trigger {
transform: scale(2, 1);
padding: 0 10px !important;
}
#menu .dropdown-content {
min-width: 170px;
width: 170px;
}
#menu .dropdown-content li {
min-height: 40px;
}
#menu .dropdown-content li > a {
color: black;
line-height: 10px;
margin-right: 10px;
}
#menu .dropdown-content li > a:before {
content: ">";
color: #BBB;
font-weight: 300;
margin-right: 10px;
}
#description {
margin-top: 40px;
padding-bottom: 5px;
position: relative;
}
#description .hide-button {
position: absolute;
top: 10px;
right: 10px;
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
opacity: 0.5
}
#description .hide-button:hover {
opacity: 0.4;
}
#description .products {
background:white;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
border-radius: 8px;
margin-bottom: 40px;
}
#description .feedback {
text-align: right;
width: 70%;
margin: auto;
}
#description .feedback a {
background-color: #bababa;
padding: 4px 9px;
color: white;
border-radius: 0px;
font-size: 13px;
}
#description .feedback a:hover {
background-color: #adadad;
}