-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
107 lines (88 loc) · 1.73 KB
/
styles.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
*{
margin: 0;
padding: 0;
/* box-sizing: border-box; */
}
body{
max-height: 100vh;
max-width: 100vw;
background-color: hsl(210deg, 46%, 95%);
}
.outer-box{
display: grid;
max-width: 1150px;
grid-template-columns: repeat(4, 1);
grid-gap: 20px;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
margin-bottom: auto;
}
/* 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 */
/* https://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@github.com/madhura-punde/pesto-students/p10-harsh-raj-madhura-punde */
img{
float: left;
margin-right: 15px;
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
border: 2px solid hsl(0deg, 0%, 81%);
}
pre{
font-size: 13px;
color: black;
opacity: 0.7;
font-family: 'Barlow Semi Condensed', sans-serif;
text-align: left;
font-weight: 500;
font-weight: bold;
}
h2{
font-size: 13px;
color: white;
font-weight: 600;
font-family: 'Barlow Semi Condensed', sans-serif;
}
.bg-pattern-1{
background-image: url("images/bg-pattern-quotation.svg");
background-repeat: no-repeat;
background-position: right;
background-color:hsl(263, 55%, 52%);
color: white;
grid-column: 1/3;
grid-row: 1;
}
.bg-pattern-2{
background-color: hsl(217, 19%, 35%);
grid-row: 1;
grid-column: 3;
}
.bg-pattern-3{
background-color: white;
grid-row: 2;
}
.bg-pattern-4{
text-color: white;
grid-row: 2;
grid-column: 2/4;
background-color: black;
}
.bg-pattern-5{
grid-column: 4;
grid-row: 1/3;
text-color: black;
background-color: white;
}
.custom{
opacity: 0.5;
}
/* //added newly */
@media screen and (min-width: 1024px) {
.outer-box{
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.bg-pattern-1{
grid-column: 1/3;
}
}