-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (110 loc) · 2.1 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
html, body{
margin: 0;
padding: 0;
box-sizing: border-box;
background: #c0c0c0;
}
.container{
width: 1000px;
height: 600px;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-gap: 20px;
grid-template-areas: "subcont1 subcont1 subcont2 subcont5"
"subcont3 subcont4 subcont4 subcont5";
margin-left: 150px;
margin-top: 100px;
margin-bottom: 10px;
}
.subcontainer1{
background: hsl(263, 55%, 52%);
background-image: url('images/bg-pattern-quotation.svg');
background-repeat: no-repeat;
background-position: 300px 0px;
grid-area: subcont1;
border-radius: 5px;
}
.subcontainer2{
background: hsl(217, 19%, 35%);
grid-area: subcont2;
border-radius: 5px;
}
.subcontainer3{
background: hsl(0, 0%, 100%);
grid-area: subcont3;
border-radius: 5px;
}
.subcontainer4{
background: hsl(219, 29%, 14%);
grid-area: subcont4;
border-radius: 5px;
}
.subcontainer5{
background: hsl(0, 0%, 100%);
grid-area: subcont5;
border-radius: 5px;
}
.nome{
padding-left: 70px;
padding-top: 25px;
font-size: 13px;
font-family: sans-serif;
color: white;
}
.nome-cinza{
padding-left: 70px;
padding-top: 25px;
font-size: 13px;
font-family: sans-serif;
color: hsl(217, 19%, 35%);
}
.verific{
padding-left: 70px;
font-size: 11px;
font-family: sans-serif;
color: white;
}
.verific-cinza{
padding-left: 70px;
font-size: 11px;
font-family: sans-serif;
color: hsl(217, 19%, 35%);
}
.text-a{
padding-left: 25px;
padding-top: 25px;
padding-right: 20px;
font-family: sans-serif;
font-weight: bold;
color: white;
}
.text-a-cinza{
padding-left: 25px;
padding-top: 25px;
padding-right: 20px;
font-family: sans-serif;
font-weight: bold;
color: hsl(217, 19%, 35%);
}
.text-b{
padding-left: 25px;
padding-right: 20px;
padding-top: 25px;
margin-bottom: 25px;
font-family: sans-serif;
font-size: 13px;
line-height: 1.35;
color: gray;
}
.foto{
border-radius: 100px;
width: 30px;
margin-left: 25px;
margin-top: 25px;
float: left;
}
.aspas{
float: right;
margin-right: 80px;
}