-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (76 loc) · 1.43 KB
/
style.css
File metadata and controls
86 lines (76 loc) · 1.43 KB
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
.highlight {
background-color: yellow;
}
.error {
background-color: lightcoral;
border: red;
}
body{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.btnStart {
border: 1px solid #197a8c;
background: none;
padding: 10px 20px;
font-size: 24px;
font-family: Impact;
cursor: pointer;
margin: 10px;
color: #197a8c;
transition: 0.8s;
position: relative;
overflow: hidden;
}
.btnStart:hover{
color: #fff;
}
.btnStart::before{
content: "";
position: absolute;
left: 0;
width: 100%;
height: 0%;
background: #197a8c;
z-index: -1;
transition: 0.8s;
top:0;
border-radius: 0 0 50% 50%;
}
.btnStart:hover::before{
height: 180%;
}
input {
width: 50%;
}
.modal {
display: none;
position: fixed;
z-index: 1; /* Sit on Top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto; /* Enable Scroll if needed*/
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.modal-content{
background-color: #fefefe;
margin: auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.close{
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color:#000;
text-decoration: none;
cursor: pointer;
}