-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
105 lines (89 loc) · 1.78 KB
/
styles.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
/*
Name: YooJoon Chang
Date: May 17, 2019
Section: CSE 154 AR
This is the styles.css page for cp4.
It is used by all pages in cp4 to give it style for the game.
*/
@import url('https://fonts.googleapis.com/css?family=Lobster');
@import url('https://fonts.googleapis.com/css?family=Cinzel');
@import url('https://fonts.googleapis.com/css?family=Poiret+One');
body {
background-color: salmon;
background-image: linear-gradient(to bottom right, salmon, orange);
text-align: center;
}
h1 {
font-size: 4em;
font-family: 'Lobster', sans-serif, cursive;
}
h2 {
margin-left: 50px;
margin-right: 50px;
font-size: 3em;
}
img {
width: 500px;
}
hr {
border-top: 5px dotted red;
}
label {
margin-top: 5px;
margin-bottom: 5px;
margin-left: 5px;
font-family: 'Poiret One', sans-serif, cursive;
}
#front-page p {
margin-left: 100px;
margin-right: 100px;
font-family: 'Cinzel', sans-serif;
background-color: pink;
border: 15px solid white;
border-radius: 4px;
}
#food-demo {
display: flex;
justify-content: flex-end;
align-items: center;
background-color: #FFEB99;
border-radius: 5px;
}
#ingredients-entry {
display: flex;
align-items: center;
justify-content: space-evenly;
border-radius: 6px;
margin-left: 500px;
margin-right: 500px;
padding-top: 30px;
padding-bottom: 30px;
}
#flex-button {
display: flex;
flex-direction: column;
}
#show-recipe {
background-color: pink;
}
#btn, #btn-2 {
background: none;
border-radius: 5px;
background-color: #E30B5D;
color: #0099FF;
cursor: pointer;
}
#list-recipe {
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
margin-left: 50px;
margin-right: 50px;
}
.extra-temp {
background-color: #CCCCFF;
border-radius: 5px;
}
.hidden {
display: none !important;
}