-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path16.css
86 lines (71 loc) · 1.68 KB
/
16.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
body {
background-color: #F5D6C6;
margin: auto;
margin-top: 70px;
width: 60%;
padding: 10px;
text-align: center;
}
.div1 h1, .div2 h1, .div3 h1 {
padding-top: 20px;
}
.div1-btn, .div2-btn, .div3-btn {
margin: auto;
width: 60%;
padding: 10px;
text-align: center;
}
.div1 button, .div2 button, .div3 button {
background-color: #4CAF50; /* Green background /
border: 1px solid green; /* Green border */
border: 2px solid #4CAF50; /* Green */
color: white; /* White text */
padding: 10px 24px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */
float: center; /* Float the buttons side by side */
position: relative;
}
/* Clear floats (clearfix hack) */
.div1:after, .div2:after, .div3:after{
content: "";
clear: both;
display: table;
}
.div1 button:not(:last-child), .div2 button:not(:last-child), .div3 button:not(:last-child){
border-right: none; /* Prevent double borders */
}
/* Add a background color on hover */
.div1 button:hover, .div2 button:hover, .div3 button:hover {
background-color: #3e8e41;
}
/* #ok1 {
background-color: #3e8e41;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
} */
.div2 {
visibility: hidden;
}
.div3 {
visibility: hidden;
}
.active {
pointer-events: none;
cursor: default;
}
a:link {
color:black;
background-color: transparent;
text-decoration: none;
}
a:visited {
color:black;
text-decoration: none;
}
a:hover {
color:black;
text-decoration: none;
}
a:active {
color:black;
text-decoration: underline;
}