-
Notifications
You must be signed in to change notification settings - Fork 0
/
desktop-design.css
56 lines (54 loc) · 1.16 KB
/
desktop-design.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
/* Desktop/tablet Design (601px and up) */
@media only screen and (min-width: 601px) {
p {
font-size: clamp(14px, 1.8vw, 18px);
}
.article-section {
text-align: left!important;
padding: 0!important;
margin: auto;
}
.article-content {
width: 80%;
margin: auto;
}
.contact-button {
color: black;
background-color: white;
border-radius: 30px;
padding: 0px 15px;
}
.contact-button:hover {
background-color: rgba(255, 255, 255, 0.3) !important;
color: white !important;
}
.desktop-flex {
display: flex;
}
.mobile {
display: none !important;
}
.navigation-menu {
width: 100%;
flex-direction: row;
color: white;
}
.desktop-reverse-order {
flex-direction: row-reverse;
}
.gallery-text {
min-width: 300px;
bottom: 42%;
transform: translateX(-50%) translateY(100%);
}
.desktop {
display: block;
}
#down-arrow-icon {
bottom: 35%;
}
#testimonial-section {
width: 85%;
margin: 10vw auto;
}
}