-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (87 loc) · 1.37 KB
/
style.css
File metadata and controls
103 lines (87 loc) · 1.37 KB
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
/* Here goes your CSS */
/* Here goes your CSS */
body {
background-color: #EBEBEB;
font-family: 'Raleway', sans-serif;
font-weight: 300;
color: grey;
line-height: 1.6em;
}
a {
color: #BBBBBd;
text-decoration: none;
}
a:hover {
color: #DD5555;
}
h1 {
color: #DD5555;
}
h2 {
color: #7D7D7D;
font-weight: lighter;
}
h3 {
font-size: 22px;
font-weight: 500;
text-align: center;
position: relative;
bottom: 50px;
color: #545454;
}
p {
font-weight: 300;
}
#img-circle {
border-radius: 50%;
}
.card {
background-color: white;
width: 550px;
border: 1px solid white;
border-radius: 4px;
margin: 20px auto;
text-align: center;
padding: 10px;
box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.2)
}
.movie-poster {
margin-right: 6px;
margin-bottom: 6px;
}
.list-inline {
padding-left: 0px;
}
.list-inline > li {
display: inline-block;
padding: 20px 20px;
}
.btn-red {
color: white;
background-color: #DD5555;
padding: 10px;
border-radius: 3px;
display: inline-block;
margin: 20px;
}
.btn-red:hover {
color: white;
background-color: #C61414;
}
.sidebar {
position: fixed;
width: 100px;
left: 0;
top: 0;
bottom: 0;
background-color: #384047;
text-align: center;
}
.content {
font-size: 25px;
display: inline-block;
margin-top: 250px;
}
.sidebar > .content > .list-inline > li > a:hover {
color: white;
}