generated from ceeoinnovations/product-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (81 loc) · 1.3 KB
/
style.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
html, body {
height: 100%;
width: 100%;
font-family: arial;
min-width: 1300px;
}
/* Style buttons */
.btn {
background-color: White;
border: none;
/* Remove borders */
color: white;
/* White text */
font-size: 16px;
/* Set a font size */
cursor: pointer;
/* Mouse pointer on hover */
display: inline-block;
}
/*darker background on mouse-over */
.btn1:hover {
background-color: lightgreen;
}
.btn1 {
border-radius: 100%;
}
.container {
position: relative;
text-align: center;
color: black;
}
.bottom-left {
position: absolute;
bottom: 8px;
left: 16px;
}
.top-left {
position: absolute;
top: 30%;
left: 15px;
}
.top-left-a {
position: absolute;
top: 15%;
left: 0px;
}
.center-left {
position: absolute;
top: 35%;
left: 47%;
transform: translate(-50%, -50%);
}
.centered {
position: absolute;
top: 35%;
left: 50%;
transform: translate(-50%, -50%);
}
.change_tab_button {
background-color: lavender;
border: none;
color: black;
padding: 10px 22px;
text-align: center;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
}
.change_tab_button:hover {
background-color: lightpink;
}
.nav {
position: fixed;
background-color: lavender;
left: 23%;
}
.infobutton {
background-color: white;
color: purple;
border:none;
}