-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
142 lines (120 loc) · 2.32 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
@import url('https://fonts.googleapis.com/css?family=Exo+2:400|Roboto:300,700');
@import url('https://use.fontawesome.com/releases/v5.8.1/css/all.css');
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}
/* Global */
body {
background-color: rgba(81, 127, 99, .1);
color: rgba(40, 83, 107, 1);
font-family: 'Roboto', sans-serif;
font-size: 16px;
font-weight: 300;
line-height: 32px;
}
h1, h2 {
/* color */
font-family: 'Exo 2', sans-serif;
font-weight: 400;
}
h1 {
color: rgba(3, 63, 99, 1);
font-size: 32px;
}
h2 {
color: rgba(81, 127, 99, 1);
font-size: 24px;
}
.container {
/* align divs */
/*width: 700px;*/ /* overridden by media queries */
margin: 0 auto;
}
.text-align {
/* align div content */
text-align: center;
}
a {
color: rgba(81, 127, 99, 1);
}
a:hover {
color: rgba(3, 63, 99, 1);
}
/* Components */
.card {
/* container */
background-color: white;
box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
border-radius: 4px;
margin: 20px 30px;
padding: 30px;
}
.img-circle, .div-circle {
border-radius: 50%;
background-size: cover;
box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}
.img-circle {
/*display: block;*/
width: 150px;
margin: 0 auto;
}
.div-circle {
width: 150px;
height: 150px;
margin: 30px auto;
background-image: url("./images/id.png");
}
.div-circle::after {
content: "";
display: block;
position: relative;
top: 65px;
left: 51px;
width: 50px;
height: 50px;
background-image: url("./images/must.png");
background-size: 50px 50px;
}
.btn-green {
color: white;
background-color: rgba(3, 63, 99, 1);
text-decoration: none;
padding: 15px 20px;
border-radius: 4px;
border: 1px solid rgba(3, 63, 99, 1);
font-weight: 700;
line-height: 64px;
}
.btn-green:hover {
color: rgba(3, 63, 99, 1);
background-color: white;
border: 1px solid rgba(3, 63, 99, 1);
}
.list-inline {
padding-left: 0;
list-style: none;
}
.list-inline > li {
display: inline-block;
padding: 0 20px;
}
.list-inline a {
font-size: 64px;
}
/* Specific */