-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (76 loc) · 1.54 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
@import url('https://fonts.cdnfonts.com/css/univers-lt-std');
body {
font-family: 'Univers LT Std', sans-serif;
font-size: 14px;
max-width: 50vw;
min-width: 300px;
margin-left: auto;
margin-right: auto;
margin-top: 4rem;
background: radial-gradient(circle, rgba(238,174,202,0.34217436974789917) 0%, rgba(148,187,233,0.17970938375350143) 100%);
}
.box-bottom a {
text-decoration: underline;
text-underline-offset: 0.2rem;
}
.box-bottom a:hover {
text-decoration: underline;
text-underline-offset: 0.35rem;
}
a {
text-decoration: none;
color: black;
}
.contact:hover {
background-color: rgb(249, 239, 152);
box-shadow: none;
}
.logo-box {
position: absolute;
bottom: 2rem;
right: 2rem;
}
.logo {
position: relative;
max-width: 50px;
}
.box {
border-top: 1.4px solid;
border-left: 2.5px solid;
border-right: 1.4px solid;
padding: 0.5rem;
}
.box-bottom {
border-top: 1.4px solid;
border-left: 2.5px solid;
border-right: 1.4px solid;
border-bottom: 1.4px solid;
padding: 0.5rem;
}
.contact {
width: fit-content;
cursor: pointer;
margin-top: 8px;
border-radius: 4px;
bottom: 3rem;
padding: 0.2rem 0.6rem 0;
text-align: center;
white-space: nowrap;
text-decoration: none;
color: #000;
border: 1.4px solid #000;
outline: none;
background: #fff;
box-shadow: 2px 2px #bbb;
}
.price-list {
margin-top: 2rem;
}
footer {
position: absolute;
bottom: 2rem;
}
.copyright-text {
font-size: 10px;
color: #bbb;
}