-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
98 lines (78 loc) · 1.32 KB
/
App.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
/* PAGE */
body,
.pure-g [class*=pure-u] {
font-family: 'Open Sans', sans-serif;
}
h1, h2, h3 {
font-family: 'Oswald', 'Arial Narrow', sans-serif;
}
code {
display: block;
margin: 20px 0 15px 0;
padding: 10px;
background: #eee;
}
.container {
box-sizing: border-box;
width: 100%;
padding: 85px 20px;
}
.graphic-container {
width: 40%;
padding-left: 5%;
padding-right: 5%;
padding-top: 20px;
padding-bottom: 20px;
display: inline-block;
}
.graphic-box {
width: 35%;
display: inline-block;
}
.pure-button-primary {
background-color: #0c1a2b;
}
.pure-button-primary:hover {
background-color: #233e5e;
}
.pure-form input[type="text"]:focus {
border-color: #0c1a2b;
}
/* NAVBAR */
.navbar {
position: fixed;
padding: 10px;
background: #232425;
font-family: 'Arial Narrow', 'Oswald', sans-serif;
}
.nav-title {
float: left;
font-size: 1.5em;
width: 85%;
}
.nav-link {
font-family: 'Arial Narrow', sans-serif;
font-size: 1em;
height: 36px;
line-height: 36px;
display: inline-block;
}
.navbar a {
color: #fff;
}
.navbar a:active,
.navbar a:focus,
.navbar a:hover {
background: #233e5e;
}
.navbar .pure-menu-heading {
font-weight: bold;
text-transform: none;
}
.navbar .navbar-right {
float: right;
}
.navbar .uport-logo {
height: 16px;
margin-right: 10px;
}