-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (126 loc) · 1.85 KB
/
style.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* Colors and Fonts */
body {
background-color: #EADDA6;
font-family: 'Roboto', sans-serif;
/*color: #7d7d7d;*/
font-weight: 300;
font-size: 15px;
line-height: 1.6em;
}
h1 {
color: #5555DD;
font-size: 22px;
font-weight: 900;
margin-top: 10;
}
h2,
h3 {
font-family: 'Slabo 27px', serif;
}
h2 {
color: #81866D;
font-size: 18px;
font-weight: 300;
font-style: italic;
letter-spacing: 1px;
}
h3 {
font-size: 16px;
font-weight: 300;
font-style: italic;
line-height: 1.8em;
letter-spacing: 3px;
}
p{
text-align: center;
}
a {
color: #70755C;
font-weight: 900;
text-decoration: none;
}
a:hover {
color: #EADDA6;
font-weight: 900;
}
table{
font-weight: 300;
font-size: 15px;
line-height: 1.6em;
}
table img {
width: 60%;
border-radius: 4px;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
/* First simple components */
.container{
width: 500px;
margin: 30px auto;
}
.card {
background-color: #FFFAE2;
margin: 10px;
margin-bottom: 20px;
padding: 20px;
border-radius: 4px;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.img-circle{
border-radius: 60%;
}
.text-center{
text-align: center;
}
.list-inline {
padding-left: 0;
}
.list-inline li {
display: inline-block;
padding: 20px;
}
.list-inline li i{
font-size: 25px;
}
.btn-blue{
background-color: #5555DD;
color: white;
font-weight: 500;
padding: 10px;
border-radius: 4px;
}
.btn-blue:hover{
background-color: #1414C6;
color: white;
}
/* Specific CSS rules */
#img-profile {
width: 100px;
height: 100px;
border: 3px solid #cccccc;
display: inline-block;
}
#div-profile {
align-content: right;
text-align: right;
}
#books{
font-weight: 300;
font-size: 15px;
line-height: 1.6em;
}
#books img{
width: 100px;
}
#books td{
padding: 10px;
}
#blue {
color: #11F;
}
#red {
color: #F11;
}
#yellow {
color: #1F1;
}