-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
118 lines (105 loc) · 2.11 KB
/
index.css
File metadata and controls
118 lines (105 loc) · 2.11 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
margin: 33px auto;
background-color: rgb(7, 32, 103);
color: white;
display: flex;
width: 550px;
height: 350px;
padding: 30px;
text-align: center;
align-items: center;
justify-content: center;
border-radius: 9px;
}
.home, .guest {
margin: 0px 25px;
}
h1 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 40px;
}
#home-btn, #guest-btn {
width: 155px;
height: 120px;
margin: 15px;
background-color: black;
color: red;
font-size: 90px;
font-family: sans-serif;
border-radius: 7px;
}
.operate {
width: 178px;
height: 55px;
margin-right: 0px;
padding-left: 7px;
/* border: 1px solid white; */
}
.operate > button {
width: 45px;
height: 45px;
margin: 3px;
background-color: transparent;
border: 2px solid white;
font-size: 18px;
color: white;
border-radius: 5px;
font-family: sans-serif;
cursor: pointer;
}
.operate > button:active {
background-color: lightslategray;
}
.container-two {
margin: 33px auto;
background-color: lightblue;
color: white;
display: flex;
flex-direction: column;
width: 550px;
height: 140px;
padding: 30px;
text-align: center;
align-items: center;
justify-content: center;
border-radius: 9px;
border: 3px solid darkslategrey;
padding: 20px;
overflow-x: auto;
overflow-y: auto;
}
.save-btn {
margin-top: 10px;
width: 150px;
padding: 10px 7px;
border-radius: 3px;
position: sticky;
top: 0;
font-size: 13px;
font-weight: bold;
color: white;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-color: darkblue;
border: none;
cursor: pointer;
}
.save-btn:active {
background-color: rgb(76, 76, 216);
}
.container-two > p {
color: black;
font-weight: bold;
font-size: 18px;
}
#home-count {
margin-top: 10px;
margin-bottom: 10px;
}
#guest-count {
margin-bottom: 20px;
}