-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (95 loc) · 1.76 KB
/
style.css
File metadata and controls
107 lines (95 loc) · 1.76 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
104
105
106
107
/* Colors and fonts */
body {
background-color: #FFFBED;
font-family: 'Roboto', sans-serif;
color: #C1925E;
font-size: 16px;
line-height: 24px;
}
h1, h2, h3 {
font-family: 'Roboto', sans-serif;
}
h1 {
color: #011936;
font-size: 32px;
font-weight: lighter;
/*font-weight: 900;*/
}
h2 {
color: #465362;
font-size: 24px;
font-weight: lighter;
/*font-weight: 500;*/
}
a {
font-family: 'Roboto', sans-serif;
text-decoration: none;
color: #B08556;
/*font-weight: 600;*/
font-weight: light;
font-size: 16px;
}
a:hover {
color: #7B5D3C;
}
.container {
width: 600px;
margin: 0 auto;
}
.card {
background-color: white;
padding: 40px;
/*box-shadow: 8px 8px 24px rgba(10,10,10,.2);*/
box-shadow: 8px 8px 24px rgba(186,183,173,.5);
border-radius: 8px;
margin: 40px 0px;
text-align: center;
}
.img-circle {
border-radius: 50%;
}
.btn-blue {
background-color: #465362;
color: white;
padding: 10px 20px;
border-radius: 4px;
/*You have to add display:inline-block; or block to the .btn-blue since
anchor elements are display:inline by default and margin/padding can't
affect them. */
display: inline-block;
/*margin: 8px 0px;*/
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline li {
display: inline;
padding: 10px;
}
.list-inline i {
font-size: 32px;
color: #E8E5D8;
}
.list-inline i:hover {
color: #5D5C57;
}
/* Responsive design below: */
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}