-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (77 loc) · 1.14 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
body {
background-color: e8ded2;
color:056676;
font-family: Gill Sans;
}
h1 {
color:056676 ;
font-family: Gill Sans;
font-weight: 1000;
letter-spacing: 10px;
font-size: 30px;
}
h2 {
color:056676 ;
}
p {
color:94b4a4 ;
font-family: Gill Sans;
}
a {
color:389393 ;
}
b {
color: 389393;
font-size: 30px
}
a:hover {
color:blue;
}
/* Custom design with class (99% of the design) */
.container {
width: 700px;
margin:40px auto;
}
@media(max-width: 760px) {
.container {
width: 600px;
}
}
@media(max-width: 500px) {
.container {
width: 400px;
}
}
.card-white {
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;
}
.img-circle {
border-radius:50px;
}
.btn-blue {
background-color: f1f6f9;
color:f1f6f9;
padding: 15px 20px;
border-radius: 4px;
}
.btn-blue {
background-color: f1f6f9;
color:d9e4dd;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline li {
display: inline;
padding: 10px;
}
/* Design adjustments using id (1% design remaining) */
#introduction p {
margin-bottom: 40px;
}