-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (112 loc) · 2.23 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
/* To use Open-Sans and Poppins (with different font-weights)*/
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,300,700|Poppins:300,400,500,700");
body {
background: #F7F9FC;
font-family: 'Lora', serif;
color: #575F7D;
font-size: 17px;
line-height: 25px;
font-weight: lighter;
}
/* To use Open-Sans and Poppins (with light version font-weights)*/
/*body {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
}*/
h1 {
font-size: 32px;
font-weight: 900;
}
h1, h2, h3 {
color: #575F7D;
font-family: 'Roboto', sans-serif;
line-height: 1em;
}
h2 {
color: #7ECE90;
font-size: 20px;
font-weight: lighter;
font-weight: 500;
}
a {
color: #6B72E1;
text-decoration: none;
font-family: 'Roboto', sans-serif;
font-weight: 600;
font-size: 16px;
}
a:hover {
color: black;
}
.container {
width: 700px; /* This sets the width */
margin: 40px auto; /* This automatically sets left/right margins */
/*min-height: 1000px;*/
}
@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;
}
}
.card {
background: #F7F9FC;
background-color: white;
padding: 40px;
box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
border-radius: 4px;
margin: 20px 0px;
text-align: center;
/*height: 1000px;*/
/*border: none;*/
}
.img-circle {
border-radius: 50%;
}
.text-center {
text-align: center;
}
.card-white {
background: white;
padding: 30px;
border: 1px solid lightgrey;
}
.btn-blue {
background-color: #6B72E1;
color: white;
padding: 15px 20px;
border-radius: 4px;
}
.list-inline > li {
display: inline-block;
padding: 0px 20px;
/*font-size: 100px;*/
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.icon {
font-size: 50px;
color: rgb(230, 230, 230);
}
.icon:hover {
color: black;
}
/*can be used instead of .icon since the fontawesome icons in the index file are inside the <i> tags*/
.list-inline i {
font-size: 50px;
color: rgb(230, 230, 230);
}