-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (99 loc) · 2.01 KB
/
Copy pathstyle.css
File metadata and controls
108 lines (99 loc) · 2.01 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
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
background: #f2ffd5;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
body, html {
height: 100%;
}
.container {
max-width: 575px;
width: calc(100% - 30px);
min-height: 400px;
background: snow;
border-radius: 25px;
-webkit-box-shadow: 1px 1px 11px black;
box-shadow: 1px 1px 11px black;
margin: auto;
padding: 20px;
}
.select-options {
max-width: 560px;
width: calc(100% - 30px);
min-height: 30px;
font-size: 15px;
text-align: center;
font-weight: bold;
font-family: Tahoma, sans-serif;
outline: none;
border-radius: 10px;
margin: 0px 10px;
}
.input {
max-width: 550px;
width: calc(100% - 30px);
outline: none;
border: none;
border-bottom: 1px solid black;
background: transparent;
margin: 10px;
font-size: 25px;
text-align: center;
}
h1 {
text-align: center;
font-size: 25px;
font-family: Tahoma, sans-serif;
}
.container1 {
max-width: 550px;
width: calc(100% - 30px);
min-height: 80px;
background: cornflowerblue;
margin: 0px 10px;
border-radius: 12px;
font-size: 30px;
text-align: center;
font-weight: bold;
font-family: Tahoma, sans-serif;
word-wrap: break-word;
}
.container2 {
max-width: 550px;
width: calc(100% - 30px);
min-height: 80px;
background: #ed6464;
margin: 10px 10px;
border-radius: 12px;
font-size: 30px;
text-align: center;
font-weight: bold;
font-family: Tahoma, sans-serif;
word-wrap: break-word;
}
.container3 {
max-width: 550px;
width: calc(100% - 30px);
min-height: 80px;
background: #d864ed;
margin: 10px 10px;
border-radius: 12px;
font-size: 30px;
text-align: center;
font-weight: bold;
font-family: Tahoma, sans-serif;
word-wrap: break-word;
}
/*# sourceMappingURL=script.css.map */