-
Notifications
You must be signed in to change notification settings - Fork 22
/
style.css
102 lines (87 loc) · 1.52 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
95
96
97
98
99
100
101
102
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;500;600;700&display=swap");
body {
font-family: "Spartan", sans-serif;
width: 500px;
margin: 0;
border: 1px solid #8c00f8;
box-sizing: border-box;
}
.title {
padding: 30px 0px;
font-size: 24px;
font-weight: 700;
text-align: center;
background-color: #8c00f8;
color: #fff;
box-shadow: 0px 0px 100px 0.1px rgba(93, 84, 164, 0.25);
}
.noOfPart {
margin: 40px 0px;
font-size: 20px;
font-weight: 600;
text-align: center;
}
.subtitle {
margin: 40px 0px;
padding: 0px 40px;
font-size: 16px;
font-weight: 500;
text-align: center;
}
.data {
margin: 40px 0px;
padding: 0px 50px;
}
.data input {
padding: 2.5%;
}
.data input[type="number"] {
outline: none;
width: 45%;
font-size: 20px;
}
.data input[type="button"] {
font-size: 20px;
width: 45%;
color: #fff;
outline: none;
background-color: #8c00f8;
border: 2px solid #8c00f8;
transition: all 0.1s ease;
cursor: pointer;
}
.data input[type="button"]:hover {
background-color: #6e00c2;
}
.hide {
display: none;
}
.running {
text-align: center;
margin-bottom: 50px;
}
.cancelButton {
margin: 40px 0px;
display: inline;
padding: 10px 40px;
font-size: 20px;
text-align: center;
color: #fff;
outline: none;
background-color: #8c00f8;
border: 1px solid #8c00f8;
transition: all 0.1s ease;
cursor: pointer;
}
.cancelButton:hover {
background-color: #6e00c2;
}
.social {
text-align: center;
margin: 40px 0px;
}
.social a {
text-decoration: none;
font-size: 24px;
padding: 0px 30px;
}