-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (117 loc) · 2.19 KB
/
style.css
File metadata and controls
125 lines (117 loc) · 2.19 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
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
119
120
121
122
123
124
125
*{
font-family: "sans serif";
}
body{
box-sizing: border-box;
display: block;
background-color: #CFD2CF;
justify-content: center;
align-items: center;
position: absolute;
display: inline-block;
width: 100%;
}
.main{
min-width: 20%;
height: 400px;
flex-direction: column;
align-items: center;
border-radius: 5px;
border: 2px solid white;
margin: 5px 5px;
padding: 2px 2px;
display: flex;
}
.text{
background-color: #CFD2CF;
margin: 10px 10px;
width: 200px ;
min-width: 20% ;
height:50px ;
align-items: center;
}
.text, h1{
align-items: center;
font-size: 30px;
margin: 10px 10px;
text-align: center;
background-color: #CFD2CF;
}
.container, .h3{
text-align: center;
font-size: 20px;
margin: 10px 5px;
}
.container{
min-width: 20%;
width: 280px;
padding: 5px 5px;
background-color:#7A86B6;
flex-direction: column;
align-items: center;
border-radius: 5px;
border: solid white;
justify-content: center;
margin-top: 100px;
position: fixed;
margin-left: 10px;
margin-right: 10px;
}
input{
align-content: center;
width: 70px;
font-size: 20px;
margin: 2px 2px;
border-radius: 2px;
border: 2px solid#C69B7B;
font-display:center;
}
button{
min-width: 30px;
width: 70px;
min-height: 20px;
height: 30px;
margin: 2px;
font-size: 20px;
padding: 1px 1px;
background-color: #826F66;
border-radius: 2px;
border: 2px solid#C69B7B;
}
.progressbar{
min-width: 20%;
border: 2px solid #C69B7B;
height: 40px;
border-radius: 5px;
margin: 10px 10px ;
padding: 1px 1px;
background-color: white;
align-items: center;
justify-content: center;
}
.show{
min-width: 20%;
height: 35px;
margin: 2px 2px;
border-radius: 5px;
}
footer {
position: fixed;
margin-top: 15px;
height: 60px;
width: 100%;
text-align: center;
font-size: 4pxd;
bottom: 0;
background-color: white;
}
.footer__text {
color: black;
}
.footer__link {
color: #7A86B6;
}
.footer__link:hover {
transition: all 0.5s ease-in-out;
color: #826F66 ;
}