-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (88 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
/* Fonts and colors
We start with the body since it will apply on all the website */
body {
background: #EBEBEB;
color: rgb(30, 30, 30);
font-family: Helvetica;
font-size: 17px;
font-weight: lighter;
font-family: 'Open Sans', sans-serif;
}
h1, h2, h3 {
font-family: 'Roboto', sans-serif;
}
h1 {
color: #DF5452;
font-size: 24px;
}
h2 {
font-size: 20px;
}
a {
text-decoration: none;
color: #B3B3B3;
}
a:hover {
color: #DF5452;
}
/* size and positions of the divs */
.container {
width: 500px;
margin: 0 auto;
}
.card-white {
/*width: 500px;*/
margin: 10px 0 10px 0;
background: white; /* White background */
padding: 30px; /* Internal space */
border-radius: 4px; /* Small radius */
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow */
border: 1px solid rgba(0, 0, 0, 0.1); /* OR subtle border */
position: relative;
}
.card-white ul {
list-style: none;
padding-left: 0px;
}
/* specific stuff */
#profile_pic {
width: 150px;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); /* Subtle shadow */
border: 1px solid rgba(0, 0, 0, 0.1);
}
.image-circle {
border-radius: 50%;
}
.btn-red {
background: #DF5452;
padding: 10px 20px;
color: white;
font-weight: bold;
border-radius: 3px;
transition: all 0.3s ease;
}
.btn-red:hover {
background: #7a1d1d;
color: white;
}
.text-center {
text-align: center;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline li {
display: inline-block;
padding: 20px;
font-size: 20px;
}
.text-left {
text-align: left;
}
.image-top-right-corner {
position: absolute;
top: 0;
right: 0;
padding: 15px 15px 0 0;
}