generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfile.css
135 lines (113 loc) · 2.11 KB
/
file.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
@media screen and (min-width: 768px) {
.speakers h2 {
display: flex;
justify-content: center;
padding-top: 20px;
padding-bottom: 10px;
}
.programLine {
width: 5%;
margin-left: 48%;
}
.speakerLine {
width: 10%;
}
.start {
display: flex;
height: auto;
margin: 15px 15px 10px 15px;
border-bottom: solid;
border-color: rgb(240, 242, 245);
border-width: 1px;
padding-bottom: 35px;
background: #fff;
}
.speakersContainer {
padding: 50px 200px 50px 200px;
display: grid;
grid-template-columns: 0.5fr 0.5fr;
}
.speakerDescription {
margin: 20px;
font-family: "Lato", sans-serif;
}
.speakerDescription h3 {
font-size: 20px;
font-weight: 600;
padding-bottom: 15px;
}
.speakerDescription h4 {
padding-bottom: 15px;
color: #ec5242;
font-weight: 500;
font-family: "Lato", sans-serif;
}
.description {
padding-top: 20px;
}
.description a {
color: #000;
font-weight: 500;
font-family: "Lato", sans-serif;
}
.moreLess {
display: none;
}
}
@media screen and (max-width: 768px) {
.programLine {
width: 10%;
}
.speakerLine {
width: 10%;
}
.start {
display: grid;
grid-template-columns: auto auto;
height: auto;
background: #fff;
margin: 10px;
padding-bottom: 10px;
border-bottom: solid;
border-color: rgb(238, 242, 245);
}
.speakerDescription {
margin: 10px;
}
.speakerDescription h3 {
font-size: 20px;
font-weight: 600;
padding-bottom: 15px;
}
.speakerDescription h4 {
padding-bottom: 15px;
color: #ec5242;
font-weight: 500;
font-family: "Lato", sans-serif;
}
.description {
padding-top: 20px;
}
.description a {
color: #000;
font-weight: 500;
font-family: "Lato", sans-serif;
}
.moreLess {
padding-top: 20px;
}
.btns {
background-color: #fff;
border: 2px solid rgb(204, 201, 201);
display: flex;
justify-content: center;
width: 60vw;
}
.btns p {
font-size: 17px;
padding-top: 10px;
}
.btns img {
width: 8%;
}
}