-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (84 loc) · 1.29 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
body{
background-color: rgb(245,245,245);
font-size: 25px;
font-family: Helvetica;
text-align: center;
margin: 0;
}
#container {
width: 700px;
margin: 0 auto;
}
.card {
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
padding: 40px;
background-color: white;
border-radius: 4px;
margin: 20px;
}
h1{
font-family: Helvetica;
font-weight: lighter;
font-size: 33px;
color: #03071e;
}
h2{
font-family: Montserrat;
font-weight: lighter;
font-size: 20px;
color: #9d0208;
}
p{
font-family: Montserrat;
font-size: 15px;
color: #605770;
}
.round {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
}
.shadowed {
box-shadow: 2px 2px 1px black;
}
.btn2 {
text-decoration: none;
color: #9d0208;
}
.btn2:hover {
text-decoration: none;
color: black;
}
.btn:hover {
text-decoration: none;
color: black;
}
.btn {
background-color: whitesmoke;
padding: 8px;
color: #605770;
font-weight: lighter;
font-size: 15px;
text-decoration: none;
border-radius: 10px;
border: 1px solid #605770;
opacity: 10;
}
.list-inline {
list-style: none;
padding: 0;
}
.list-inline li {
display: inline;
}
.list-inline li i {
font-size: 50px;
color: rgb(230,230,230);
margin-right: 20px;
}
.list-inline li i:hover {
color:#605770;
}