-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignmentstyle.css
110 lines (107 loc) · 2.17 KB
/
assignmentstyle.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
*{
color: white;
font-family: "Lexend Deca",sans-serif;
font-weight: 400;
}
.page{
width: 100%;
height: 100%;
}
body{
background-color: hsl(233, 47%, 7%);
}
.card{
display: grid;
grid-template-rows: 100%;
grid-template-columns: 50% 50%;
width: 60%;
position: relative;
/* align-items: center; */
align-content: center;
top: 20vh;
left: 20%;
height: 45vh;
background-color: hsl(244, 38%, 16%);
border-radius: 10px;
}
.image{
/* height: 35vh; */
/* object-fit: cover; */
background: linear-gradient(rgba(170, 92, 219,0.5),rgba(170, 92, 219,0.5)),url("./image-header-desktop.jpg") no-repeat ;
background-size: 100% 100%;
}
.image{
border-radius: 0 10px 10px 0;
}
.description{
display: flex;
font-size: 100%;
flex-direction: column;
justify-content: space-around;
align-self: stretch;
margin: 5%;
}
h1{
color: hsl(0, 0%, 100%);
font-family: "Inter",sans-serif;
font-weight: 700;
}
.description1{
font-size: 120%;
color: hsla(0, 0%, 100%, 0.75);
}
.outerpartner{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
justify-content: space-around;
}
#highlight{
font-weight: 700;
color: hsl(277, 64%, 61%);
}
.partner{
display: flex;
justify-content: space-around;
}
.subheading{
display: flex;
justify-content: space-around;
}
.companies{
font-size: 200%;
font-weight: 700;
}
.templates{
font-size: 200%;
font-weight: 700;
}
.queries{
font-size: 200%;
font-weight: 700;
}
.companies1{
font-size: 100%;
color: hsla(0, 0%, 100%, 0.6);
font-family: "Lexend Deca",sans-serif;
}
.templates1{
font-size: 100%;
color: hsla(0, 0%, 100%, 0.6);
font-family: "Lexend Deca",sans-serif;
}
.queries1{
font-size: 100%;
color: hsla(0, 0%, 100%, 0.6);
font-family: "Lexend Deca",sans-serif;
}
@media screen and (max-width:900px) {
.card{
grid-template-columns: auto;
grid-template-rows: 30% 70%;
height: 65vh;
overflow: auto;
}
.image{
order: -1;
}
}