-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (103 loc) · 1.72 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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Roboto:wght@300;400;500;700&display=swap');
body {
background-color: #EAF4F4;
background-size: cover;
}
h1, h2, h3 {
font-family: 'Roboto', sans-serif;
color: #6B9080;
}
h1 {
font-size: 36px;
font-weight: 900;
}
h2 {
font-size: 24px;
font-weight: 500;
}
p {
font-family: 'Open Sans', sans-serif;
font-size: 19px;
color: #6B9080;
}
a {
font-family: 'Roboto', sans-serif;
color: #A4C3B2;
text-decoration: none;
}
a:hover{
color: #6B9080;
}
.container {
/* background-color: #EAF4F4;
background-size: cover;*/
margin: 0 auto;
padding: 36px 0;
}
.card {
background-color: #F6FFF8;
padding: 36px;
width: 800px;
margin: 16px auto;
text-align: center;
border-radius: 8px;
box-shadow: 0px 1px 2px #CCE3DE;
}
.card:hover {
box-shadow: 0px 4px 2px #CCE3DE;
}
.no-bullet-points {
list-style: none;
}
.no-padding {
padding: 0;
}
.inline-list-item {
display: inline;
}
.horizontal-margin-4 {
margin: 0 4px;
}
.large-icon-42 {
font-size: 42px;
}
.img-circle {
border-radius: 50%;
}
.btn-padding {
color: #EAF4F4;
background-color: #A4C3B2;
padding: 12px 28px;
border-radius: 8px;
}
.btn-padding:hover {
background-color: #6B9080;
color: #EAF4F4;
}
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
.card {
width: 80%;
margin: 16px auto;
}
}
@media (max-width: 720px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
.container {
width: 300px;
}
.large-icon-42 {
font-size: 36px;
}
h2 {
font-size: 18px;
}
}