-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (82 loc) · 1.24 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
h1 {
font-family: 'REM', sans-serif;
font-weight: 600;
color: #245a36;
}
h2 {
font-family: 'REM', sans-serif;
color: #3371ff;
font-weight: 400;
}
body {
background-color: #f1f6fe;
}
p {
font-family: 'Roboto', sans-serif;
color: #272829;
}
.text-center {
text-align: center;
}
a {
text-decoration: none;
font-size: 30px;
font-family: 'REM', sans-serif;
padding: 10px;
border-radius: 5px;
}
#btn-green {
color: #ffffff;
background-color: #91C8E4;
}
a:hover {
text-decoration: underline;
}
.container {
width: 500px;
margin:30px auto;
}
.img-circle {
border-radius: 50%;
}
.card-white {
background: white;
padding: 30px;
border: 1px solid rgb(245, 242, 242);
width: 500px;
margin: 20px;
border-radius: 5px;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline > li {
display: inline-block;
padding: 0px 20px;
}
.icon {
color:#272829;
font-size: 40px;
}
.shadowed {
box-shadow: 3px 3px 15px #D8D9DA;
}
@media (max-width: 960px) {
.container {
width: 700px;
margin:30px auto;
}
}
@media (max-width: 720px) {
.container {
width: 400px;
margin:30px auto;
}
}
@media (max-width: 540px) {
.container {
width: 200px;
margin:30px auto;
}
}