-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfostyle.css
95 lines (83 loc) · 1.32 KB
/
fostyle.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
letter-spacing: 1px;
}
html,
body {
background-color: #f0f8ff;
color: #313131;
font-family: "Lato", "Arial", sans-serif;
font-size: 21px;
font-weight: 100;
text-rendering: optimizeLegibility;
overflow-x: hidden;
}
@media all and (max-width: 600px) {
.all,
.order {
flex-direction: column;
}
}
.one-two h3 {
font-weight: lighter;
}
.prevorder {
margin-left: 80px;
}
.order h3 {
margin-left: 50px;
}
.order {
display: flex;
margin: 40px;
align-items: center;
margin-left: 25px;
}
.item-img {
width: 200px;
}
.items {
display: flex;
flex-wrap: wrap;
margin-left: 35px;
margin-right: 10px;
}
.itemele {
margin-left: 25px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.one-two h3 {
margin-left: 25px;
margin-right: 25px;
margin-top: 10px;
}
.one-two {
width: 50%;
}
.all {
display: flex;
margin-bottom: 50px;
}
.button,
.prevorder {
width: 200px;
border: 1px solid #e67e22;
color: #e67e22;
background-color: white;
padding: 14px 28px;
cursor: pointer;
border-radius: 100px;
font-size: 16px;
transition: background-color 0.2s, border 0.2s, color 0.2s;
}
.prevorder:hover,
.prevorder:active,
.button:hover,
.button:active {
background-color: #e67e22;
color: #fff;
}