-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
106 lines (88 loc) · 1.91 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
99
100
101
102
103
104
105
106
/* welcome */
.welcome-container .welcome {
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
margin: auto;
width: 100%;
height: 100px;
line-height: 100px;
}
.welcome-container .welcome input {
font-size: 40px;
padding: 10px;
text-align: center;
height: 100px;
border-radius: 4px;
border: 1px solid #ccc;
}
.welcome-container .welcome button {
padding: 10px;
vertical-align: top;
height: 100px;
width: 245px;
font-size: 30px;
}
.navbar-element {
text-align: center;
display: block;
background-color: #337ab7;
position: fixed;
width: 100%;
}
.navbar-element nav {
display: inline-block;
float: none;
border-color: transparent;
margin: 0px;
background-color: #337ab7;
}
.navbar-element .navbar-brand {
padding: 15px 130px;
}
.navbar-element a.navbar-brand {
color: #fff;
text-transform: uppercase;
}
.navbar-element a.navbar-brand:active, .navbar-element a.navbar-brand:focus {
color: #fff;
text-decoration: none;
}
.navbar-element a.navbar-brand:hover {
color: #fff;
text-decoration: underline;
}
.welcome-container .initial-posts {
margin-top: 150px;
}
.welcome-container .initial-posts h3 {
color: rgb(81, 163, 255)
}
.welcome-container .post-description {
width: 50%;
text-align: center;
margin: 10px auto;
}
.welcome-container .initial-posts-list {
padding-bottom: 50px;
}
.navbar-element .container-fluid .notactive {
color: #ccc;
text-decoration: none;
}
.navbar-element .container-fluid .active {
color: #fff !important;
text-decoration: underline !important;
cursor: pointer !important;
}
.navbar-element .container-fluid .notactive:hover, .navbar-element .container-fluid .notactive:focus {
color: #ccc;
text-decoration: none;
cursor: not-allowed;
}
.welcome-container img {
max-width: 50%;
}
/* end welcome */