-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_3.css
118 lines (105 loc) · 2.07 KB
/
style_3.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
body {
background-image: url("bg_ca.svg");
background-repeat: no-repeat;
background-size: cover;
}
#a {
width: 25%;
height: 40px;
margin-top: 23%;
margin-left: 28%;
box-sizing: border-box;
border: 2px solid #ccc;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
word-spacing: 2px;
font-weight: 400;
letter-spacing: 2px;
}
#a:focus {
border: 2px solid #000000;
}
#b {
width: 25%;
height: 40px;
margin-top: 3%;
margin-left: 38%;
font-weight: 400;
box-sizing: border-box;
border: 2px solid #ccc;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
word-spacing: 2px;
}
#b:focus {
border: 2px solid #000000;
}
#stop {
margin-left: 10px;
width: 10%;
height: 40px;
border: 2px;
border-style: solid;
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
font-weight: 800;
}
#start {
margin-left: 10px;
width: 10%;
height: 40px;
border: 2px;
border-style: solid;
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
font-weight: 800;
}
#github {
position: absolute;
margin-top: 12%;
margin-left: 5%;
}
.ls {
color: rgb(36, 36, 36);
text-decoration: none;
font-weight: 600;
font-size: small;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin-left: 10px;
}
.mner {
visibility: hidden;
height: 0px;
width: 0px;
}
#footer {
position: fixed;
left: 0px;
bottom: 0px;
/* height: 30px; */
width: 100%;
/* background: #999; */
}
.alert {
padding: 20px;
background-color: rgb(32, 32, 32);
color: rgb(184, 184, 184);
font-size: 14px;
font-weight: 600;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 20px;
line-height: 18px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: rgb(54, 54, 54);
}