forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·123 lines (110 loc) · 16.4 KB
/
style.css
File metadata and controls
executable file
·123 lines (110 loc) · 16.4 KB
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
/* We are using the 'Roboto' font from Google. This has already been added to your HTML header */
body {
font-family: 'Roboto', sans-serif;
-webkit-font-smoothing: antialiased;
}
.Flex-content {
margin-top: 20px;
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
text-align: center;
padding: 0 50px;
justify-content: center;
justify-content: space-between;
}
.Flex-content>ul {
width: 35vw;
display: flex;
flex-direction: row;
justify-content: space-between;
list-style-type: none;
margin-right: 200px;
}
.Flex-content>img {
display: flex;
max-width: 100%;
margin-left: 300px;
width: 26;
max-width: 100%;
height: auto;
}
.content>active {
font-style: italic;
font-weight: bold;
}
.content {
display: flex;
position: relative;
justify-content: center;
align-items: center;
}
.text-block {
display: flex;
position: absolute;
flex-direction: column;
color: white;
justify-content: center;
}
.buttons {
background-color: #F15A29;
border-color: #F15A29;
text-shadow: none;
border-style: none;
border-radius: 4px;
padding: 1rem 1.5rem;
font-size: 1.2rem;
display: flex;
justify-content: center;
align-items: center;
}
.cases-content h2 {
display: flex;
justify-content: center;
align-items: center;
margin-top: 100px;
}
.devices {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
justify-content: space-around;
list-style-type: none;
margin-top: 50px;
text-align: center;
}
.social-content {
font-style: normal;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 15px;
}
.icons {
list-style-type: none;
justify-content: space-around;
align-items: center;
color: lightskyblue;
border-radius: 1.25rem;
width: 2.5rem;
height: 2.5rem;
display: inline-block;
margin: 1.25rem 5px;
border: 1px solid #eaebec;
padding: 0.625rem 0;
text-align: center;
flex-direction: row;
}
.back-image {
width: 100%;
height: auto;
}
/* Add your custom styles below * * Remember: * - Be organised,
use comments and separate your styles into meaningful chunks * for example: General styles,
Navigation styles,
Hero styles,
Footer etc. * * - When using Flexbox,
remember the items you want to move around need to be inside a parent container set to 'display: flex' */