-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
133 lines (110 loc) · 2.35 KB
/
main.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
body {
background-color: #22252F;
color: #E3EAEE;
font-family: "Comic Sans MS", cursive, sans-serif;
}
#container {
padding: 0;
margin-right: auto;
margin-left: auto;
padding-top: 1.5em;
text-align: center;
vertical-align: middle;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
background-color: rgb(33, 35, 43);
border-radius: 15px;
/* height: 8em; */
/* font-size: 34px; */
/* margin-top: 30vh; */
/* width: 65%; */
}
@media only screen {
#container {
margin-top: 5vh;
width: 95%;
height: 85vh;
font-size: 25px;
}
#content {
height: 18em;
}
}
/* @media only screen and (min-width: 1023px) {
#container {
height: 8em;
font-size: 34px;
margin-top: 30vh;
width: 65%;
}
#content {
height: 5em;
}
} */
#header {
font-style: normal;
font-size: 40px;
}
#content {
width: 100%;
font-style: italic;
}
#button {
position: relative;
display: block;
margin: 30px auto;
padding: 0;
overflow: hidden;
border-width: 0;
outline: none;
border-radius: 2px;
box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
background-color: #E3EAEE;
color: #ecf0f1;
transition: background-color .3s;
}
#button:hover, #button:focus {
background-color: rgb(178, 180, 182);
}
#button > * {
position: relative;
}
#button {
font-size: 25px;
padding: 10px;
color: 22252F;
font-family: "Comic Sans MS", cursive, sans-serif;
}
#button:before {
content: "";
position: absolute;
top: 50%;
left: 50%;
display: block;
width: 0;
padding-top: 0;
border-radius: 100%;
background-color: rgba(236, 240, 241, .3);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
#button:active:before {
width: 120%;
padding-top: 120%;
transition: width .25s ease-out, padding-top .2s ease-out;
}
#productinfo {
float: left;
position: absolute;
bottom: 3%;
font-family: monospace;
font-size: 20px;
margin-left: 8px;
}
#productinfo img {
height: 40px;
vertical-align: middle;
display: inline-block;
}